feat(tabletop): inject proxy handlers from web app

This commit is contained in:
2026-08-09 21:46:36 +08:00
parent eefce5487d
commit 521519ce3d
15 changed files with 670 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
{
"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/mesh": "workspace:*",
"bson": "^7.3.1",
"react": "^19.2.8",
"three": "^0.185.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@types/react": "^19.2.18",
"@types/three": "^0.185.4",
"typescript": "^5.7.2",
"vitest": "^4.1.10"
}
}