Files
Space-Game/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

20 lines
595 B
JSON

{
"name": "void-nav",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "bash scripts/dev.sh",
"dev:docs": "pnpm --filter @void-nav/docs dev --port 5173",
"dev:site": "pnpm --filter @void-nav/site dev --port 5174",
"dev:game": "echo 'Game app not yet created. Run pnpm create-vite apps/game to scaffold.'",
"build": "pnpm -r --if-present build",
"check": "pnpm -r --if-present check"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0"
},
"packageManager": "pnpm@9.15.0"
}