feat: establish facade-first runtime boundary

This commit is contained in:
2026-08-02 02:39:37 -04:00
parent 3978833c5c
commit df0053cfe5
16 changed files with 1004 additions and 34 deletions

View File

@@ -6,17 +6,23 @@
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
"preview": "vite preview",
"check:facade-boundary": "node scripts/check-facade-boundary.mjs",
"test:facade": "tsx --test tests/facade.test.ts",
"verify": "npm run check:facade-boundary && npm run test:facade && npm run build"
},
"dependencies": {
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
"react-dom": "^18.3.1",
"three": "^0.185.1"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.185.3",
"@vitejs/plugin-react": "^4.3.4",
"tsx": "^4.23.1",
"typescript": "^5.7.2",
"vite": "^6.0.5"
}