- Restructure flat static prototype into pnpm workspace monorepo - apps/game: playable shell with R3F 3D scene, HUD, SpacetimeDB connection - apps/docs: design docs and prototypes - apps/site: landing page - packages/ui: shared Button and Panel primitives - services/spacetimedb: backend module (9 tables, 11 reducers) - Archive legacy static files to archive/legacy-static/ - Game loop: connect, undock, target, approach, dock, mine, sell - Add pnpm-workspace.yaml, tsconfig.base.json, spacetime.json
24 lines
421 B
JSON
24 lines
421 B
JSON
{
|
|
"name": "@void-nav/ui",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
},
|
|
"./styles.css": "./src/styles.css"
|
|
},
|
|
"scripts": {
|
|
"check": "tsc --noEmit"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.3.23",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|