-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "potree-core",
"version": "2.0.10",
"description": "Potree wrapper for three.js applications",
"repository": {
"type": "git",
"url": "https://github.com/tentone/potree-core.git"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "webpack --mode development --watch --progress --stats-children",
"build": "webpack --mode production --config webpack.prod.js",
"start": "npm run build && webpack-dev-server --config webpack.example.js --mode development --progress --port 5200",
"docs": "jsdoc -d docs source",
"pub": "npm run build && npm publish --access public .",
"lint": "eslint source",
"lint-fix": "eslint --fix source"
},
"keywords": [
"three",
"potree",
"3d",
"webgl"
],
"author": "Tentone",
"license": "MIT",
"peerDependencies": {
"three": ">0.125.0"
},
"dependencies": {
"three": "^0.154.0",
"brotli": "1.3.3"
},
"devDependencies": {
"@types/node": "20.8.4",
"@types/three": "^0.152.1",
"@typescript-eslint/eslint-plugin": "8.0.1",
"@typescript-eslint/parser": "8.0.1",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.3",
"eslint": "9.9.0",
"eslint-plugin-typescript": "0.14.0",
"html-loader": "4.2.0",
"html-webpack-plugin": "5.5.0",
"raw-loader": "4.0.2",
"style-loader": "3.3.1",
"ts-loader": "9.5.1",
"typescript": "5.5.4",
"webpack": "5.94.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4",
"worker-loader": "3.0.8"
}
}