-
-
Notifications
You must be signed in to change notification settings - Fork 539
/
package.json
41 lines (41 loc) · 936 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
{
"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",
"browserslist": [
">1%",
"not dead"
],
"staticFiles": {
"staticPath": [
{
"staticPath": "assets",
"staticOutDir": "assets"
}
]
},
"scripts": {
"dev": "vite --port 3000",
"build": "vite build",
"clean": "rimraf dist/**",
"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.9",
"gltf-validator": "^2.0.0-dev.3.9",
"query-string": "^8.1.0",
"simple-dropzone": "^0.8.3",
"three": "^0.162.0",
"vhtml": "^2.2.0"
},
"devDependencies": {
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"vite": "^5.1.8"
}
}