-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "vox-viewer",
"version": "1.3.0",
"description": "like model-viewer but for .vox models",
"main": "vox-viewer.js",
"scripts": {
"build-demo": "webpack --config demo/webpack.config.js",
"start": "webpack --config demo/webpack.config.js && sirv demo",
"watch": "webpack --config demo/webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/florianfe/vox-viewer.git"
},
"keywords": [
"voxel",
"magickavoxel",
"model-viewer",
"graphics",
"model",
"graphics",
"vox",
"model"
],
"author": "Florian Fechner",
"license": "MIT",
"dependencies": {
"@google/model-viewer": "^1.12.0",
"lit": "^2.2.5",
"ndarray": "^1.0.19",
"three": "^0.141.0",
"underscore": "^1.13.3",
"vox-reader": "^3.0.0",
"voxel-triangulation": "^1.3.6",
"zeros": "^1.0.0"
},
"devDependencies": {
"sirv": "^2.0.2",
"sirv-cli": "^2.0.2",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
}
}