forked from pnext/three-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@pnext/three-loader",
"private": false,
"version": "0.2.9",
"description": "Potree loader for ThreeJS, converted and adapted to Typescript.",
"contributors": [
"Hugo Campos <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pnext/three-loader.git"
},
"bugs": {
"url": "https://github.com/pnext/three-loader/issues"
},
"license": "MIT",
"main": "build/potree.js",
"typings": "build/declarations/index.d.ts",
"scripts": {
"clean": "rimraf build",
"start": "webpack --mode development --watch --progress",
"start:example": "webpack-dev-server --config webpack.config.example.js --mode development --progress",
"build": "npm run clean && npm run lint && webpack --mode production --progress --config webpack.config.prod.js",
"lint": "tslint --project tsconfig.json",
"prettier": "prettier --write \"**/*.js\" \"**/*.jsx\" \"**/*.tsx\" \"**/*.ts\"",
"prepare-release": "standard-version"
},
"dependencies": {},
"peerDependencies": {
"three": "~0.139.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@types/node": "^17.0.23",
"@types/three": "^0.139.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.4",
"babel-preset-env": "^1.7.0",
"circular-dependency-plugin": "^5.2.2",
"css-loader": "^5.2.7",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.2",
"install": "^0.13.0",
"prettier": "1.19.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"size-plugin": "^3.0.0",
"standard-version": "^9.3.2",
"style-loader": "^2.0.0",
"three": "~0.139.0",
"three-orbit-controls": "^82.1.0",
"ts-loader": "^8.2.0",
"tslint": "^6.1.3",
"typescript": "^4.6.3",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"worker-loader": "^2.0.0"
},
"keywords": [
"three",
"threejs",
"potree",
"pointcloud",
"point cloud",
"points",
"gis",
"loader",
"3d",
"webgl",
"geo",
"gis",
"photogrammetry"
],
"homepage": "https://github.com/pnext/three-loader#readme",
"author": ""
}