forked from cognitedata/potree-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 966 Bytes
/
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
{
"name": "@cognite/potree-core",
"version": "1.1.1",
"description": "Potree wrapper for threejs applications",
"main": "dist/bundle.js",
"repository": {
"type": "git",
"url": "https://github.com/cognitedata/potree-core.git"
},
"scripts": {
"build": "webpack && cp source/bundle.d.ts dist/",
"docs": "jsdoc -d docs source",
"pub": "npm run build && npm publish --access public ."
},
"keywords": [
"three",
"potree",
"3d",
"webgl"
],
"files": [
"dist"
],
"author": "Tentone",
"license": "MIT",
"peerDependencies": {
"three": "^0.113.2"
},
"dependencies": {
"peer-deps-externals-webpack-plugin": "^1.0.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-web-worker-loader": "^0.6.0",
"webpack-cli": "^3.3.9",
"worker-loader": "^2.0.0"
},
"devDependencies": {
"jsdoc": "^3.5.0",
"rollup": "^1.0.0",
"rollup-plugin-strip": "^1.2.1",
"webpack": "^4.41.2"
}
}