forked from donmccurdy/three-gltf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"private": true,
"version": "1.5.1",
"description": "Preview glTF models using three.js and a drag-and-drop interface.",
"author": "Don McCurdy <[email protected]> (https://www.donmccurdy.com)",
"license": "MIT",
"main": "public/app.js",
"targets": {
"main": {
"engines": {
"browsers": [
"> 1%",
"not dead"
]
}
}
},
"staticFiles": {
"staticPath": [
{
"staticPath": "assets",
"staticOutDir": "assets"
}
]
},
"scripts": {
"build": "parcel build index.html --public-url . --out-dir public",
"build:registry": "curl https://rawgit.com/KhronosGroup/glTF-Generator-Registry/main/registry.json -o lib/gltf-generator-registry.json",
"dev": "parcel index.html --port 3000",
"test": "node test/gen_test.js",
"deploy": "npm run build && vercel --local-config vercel.json --prod",
"postversion": "git push && git push --tags"
},
"dependencies": {
"dat.gui": "^0.7.7",
"glob-to-regexp": "^0.4.1",
"glsl-blend-soft-light": "^1.0.5",
"glsl-film-grain": "^1.0.4",
"gltf-validator": "^2.0.0-dev.3.5",
"handlebars": "^4.7.6",
"query-string": "^7.0.1",
"simple-dropzone": "^0.8.1",
"three": "^0.133.1"
},
"devDependencies": {
"glslify-bundle": "^5.1.1",
"glslify-deps": "^1.3.2",
"node-fetch": "^3.0.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.0"
}
}