Files
Space-Game/apps/docs/package.json
francy51 57633addfe chore: sync codebase remediation, gameplay systems, and docs
Security & infrastructure:
- Remove unused services/ (auth, spacetimedb) and auth.db
- Add .env.example template, expand .gitignore for env/db files
- Add GitHub Actions CI + commitlint config and workflows
- Add manual vendor chunking and source maps to docs/site vite configs

Shared UI & docs app:
- Add ARIA props and focus-visible rings to Button/Panel
- Add ButtonAsLink primitive; use shared Button in NotFound
- Wire @void-nav/ui into docs app; refresh content pages
- Replace Todo page with Kanban board

Gameplay (Bevy):
- Add ai module (behavior, faction, navigation, perception, spawning, states)
- Add narrative module (events, history, synthesis, ui)
- Refine galaxy contents and in-system flight/scene systems
2026-06-16 11:49:13 -04:00

31 lines
749 B
JSON

{
"name": "@void-nav/docs",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc --noEmit && vite build",
"check": "tsc --noEmit",
"preview": "vite preview --host 0.0.0.0"
},
"dependencies": {
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.17.10",
"@void-nav/ui": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"three": "^0.160.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/three": "^0.160.0",
"tailwindcss": "^4.3.0",
"typescript": "^5.8.3",
"vite": "^7.0.0"
}
}