Files
hypercross cd08e6af04 feat(tabletop): add state, setup, mounting, and stacking
Implement the tabletop library's game state store, setup seeding with
bare-type expansion, surface mount tree resolution, part placement, and
the stacking positioning process with a dependency-free SVG path helper.
Wire the public API and add unit plus vite integration tests.
2026-08-09 22:34:18 +08:00

39 lines
941 B
JSON

{
"name": "@tts/tabletop",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"lint": "echo \"no lint configured\""
},
"dependencies": {
"@react-three/drei": "^10.7.8",
"@react-three/fiber": "^9.7.0",
"@react-three/postprocessing": "^3.0.4",
"@tts/bgm": "workspace:*",
"@tts/http": "workspace:*",
"@tts/mesh": "workspace:*",
"react": "^19.2.8",
"three": "^0.185.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@types/node": "^22.12.0",
"@types/react": "^19.2.18",
"@types/three": "^0.185.4",
"typescript": "^5.7.2",
"vite": "^8.2.1",
"vitest": "^4.1.10"
}
}