-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "voxeljs-next",
"version": "0.0.13",
"description": "The next generation of Voxel JS.",
"main": "dist/voxeljs-next.js",
"module": "src/index.js",
"scripts": {
"prepublish": "npm run build",
"start": "webpack-dev-server --mode development",
"nuke": "rm package-lock.json && rm -rf dist && rm -rf node_modules && rm -rf examples/node_modules",
"build": "cd examples && npm i && cd .. && LIBRARY=true webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshmarinacci/voxeljs-next.git"
},
"author": "Josh Marinacci",
"license": "BSD3",
"bugs": {
"url": "https://github.com/joshmarinacci/voxeljs-next/issues"
},
"files": [
"src",
"dist/voxeljs-next.js",
"dist/voxeljs-next.js.map"
],
"homepage": "https://github.com/joshmarinacci/voxeljs-next#readme",
"peerDependencies": {
"three": "^0.116.1",
"ecsy": "^0.2.3",
"ecsy-three": "^0.1.0"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"ecsy": "^0.2.3",
"ecsy-three": "^0.1.0",
"html-webpack-plugin": "^4.3.0",
"style-loader": "^1.2.1",
"three": "^0.116.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {}
}