-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"homepage": "https://tamilprakash.github.io/gltfviewer",
"private": true,
"version": "1.5.1",
"description": "Preview glTF models using three.js and a drag-and-drop interface.",
"author": "Don McCurdy <dm@donmccurdy.com> (https://www.donmccurdy.com)",
"license": "MIT",
"main": "public/app.js",
"browserslist": [
">1%",
"not dead"
],
"staticFiles": {
"staticPath": [
{
"staticPath": "assets",
"staticOutDir": "assets"
}
]
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"dev": "vite --port 3000",
"build": "vite build",
"preview": "vite preview",
"clean": "rimraf dist/**",
"test": "node test/gen_test.js",
"deployp": "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.154.0",
"vhtml": "^2.2.0"
},
"devDependencies": {
"gh-pages": "^6.0.0",
"rimraf": "^5.0.1",
"vite": "^4.4.3"
}
}