- refactor the /earth HUD into class-first CSS layers with dedicated base, hud, and toolbar responsibilities - clean up Earth markup and runtime DOM hooks so shared panel, toolbar, tooltip, and status classes stay consistent after dynamic updates - keep HUD scaling configurable through extracted constants and remove leftover legacy panel/toolbar styling paths - make planet.sh self-bootstrap Bun and uv by prepending local runtime bins to PATH and auto-installing missing tools in fresh environments - document Bun as the frontend package manager of record and sync repository version metadata to 0.24.1
33 lines
755 B
JSON
33 lines
755 B
JSON
{
|
|
"name": "planet-frontend",
|
|
"version": "0.24.1",
|
|
"private": true,
|
|
"packageManager": "bun@1",
|
|
"dependencies": {
|
|
"@ant-design/icons": "^5.2.6",
|
|
"antd": "^5.12.5",
|
|
"axios": "^1.6.2",
|
|
"dayjs": "^1.11.10",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-resizable": "^3.1.3",
|
|
"react-router-dom": "^6.21.0",
|
|
"simplex-noise": "^4.0.1",
|
|
"socket.io-client": "^4.7.2",
|
|
"three": "^0.160.0",
|
|
"zustand": "^4.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.45",
|
|
"@types/react-dom": "^18.2.18",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.0.10"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview"
|
|
}
|
|
}
|