Files
tilt/package.json
T
2026-08-03 10:28:11 -05:00

26 lines
879 B
JSON

{
"name": "tilt",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Physics-driven hockey. Spike 1: three agents skating on ice.",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "node test/skaterSim.mjs && node test/rink.mjs && node test/ai.mjs && node test/pose.mjs && node test/input.mjs && node test/physics.mjs && node test/hits.mjs && node test/puck.mjs && node test/goalie.mjs && node test/shootout.mjs",
"capture": "node tools/capture.mjs",
"img2mesh": "node tools/img2mesh.mjs",
"img2mesh:player": "node tools/img2mesh.mjs --subject player",
"img2mesh:goalie": "node tools/img2mesh.mjs --subject goalie"
},
"dependencies": {
"box3d.js": "^0.0.2",
"three": "^0.185.1"
},
"devDependencies": {
"puppeteer-core": "^25.4.0",
"vite": "^8.1.5"
}
}