feat(viewer): add Vue-based HUD, ops strip, and history window

This commit is contained in:
2026-03-19 13:49:56 -04:00
parent 710addf1f5
commit 3ca568c05d
36 changed files with 2648 additions and 1017 deletions

View File

@@ -5,15 +5,21 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.json && vite build",
"build": "vue-tsc -p tsconfig.json --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
"three": "^0.179.1"
"pinia": "^3.0.3",
"three": "^0.179.1",
"vue": "^3.5.21"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@types/three": "^0.183.1",
"@vitejs/plugin-vue": "^6.0.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.2",
"vite": "^7.1.3"
"vite": "^7.1.3",
"vue-tsc": "^3.0.7"
}
}