Build seamless game loop prototype

This commit is contained in:
2026-05-30 21:05:31 -04:00
parent e14e43da42
commit 7d9095b933
132 changed files with 23006 additions and 5652 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "space-game",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --host 0.0.0.0"
},
"dependencies": {
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.17.10",
"@tailwindcss/vite": "^4.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"tailwindcss": "^4.3.0",
"three": "^0.160.0",
"vite": "^7.0.0"
},
"devDependencies": {
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/three": "^0.160.0",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@9.15.0"
}