this repo has no description
at main 922 B view raw
1{ 2 "private": true, 3 "version": "1.5.1", 4 "description": "Preview glTF models using three.js and a drag-and-drop interface.", 5 "author": "Don McCurdy <dm@donmccurdy.com> (https://www.donmccurdy.com)", 6 "license": "MIT", 7 "main": "public/app.js", 8 "browserslist": [ 9 ">1%", 10 "not dead" 11 ], 12 "staticFiles": { 13 "staticPath": [ 14 { 15 "staticPath": "assets", 16 "staticOutDir": "assets" 17 } 18 ] 19 }, 20 "scripts": { 21 "dev": "vite --port 3000", 22 "build": "vite build", 23 "clean": "rm -rf dist/* || true", 24 "test": "node test/gen_test.js", 25 "deploy": "npm run build && vercel --local-config vercel.json --prod", 26 "postversion": "git push && git push --tags" 27 }, 28 "dependencies": { 29 "dat.gui": "^0.7.9", 30 "gltf-validator": "^2.0.0-dev.3.10", 31 "query-string": "^9.2.2", 32 "simple-dropzone": "^0.8.3", 33 "three": "^0.179.1", 34 "vhtml": "^2.2.0" 35 }, 36 "devDependencies": { 37 "prettier": "^3.6.2", 38 "vite": "^7.1.3" 39 } 40}