4c7cc26281
api/ (ElysiaJS+Bun WS gateway skeleton), worker/ (Rust, Redis dirty-chunk stream consumer behind a swappable RenderBackend trait), frontend/ (ElysiaJS+Pug+Tailwind4+Alpine, one server-rendered page) — all three verified running locally. docker-compose wires them up with postgres, redis, minio (rendered tile/mesh object storage), and Caddy as reverse proxy.
22 lines
500 B
JSON
22 lines
500 B
JSON
{
|
|
"name": "@mcmapper/frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"start": "bun run src/index.ts",
|
|
"build:css": "tailwindcss -i src/public/css/input.css -o src/public/css/tailwind.css"
|
|
},
|
|
"dependencies": {
|
|
"elysia": "^1.1.0",
|
|
"pug": "^3.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"bun-types": "latest",
|
|
"typescript": "^5.5.0",
|
|
"tailwindcss": "^4.0.0",
|
|
"@tailwindcss/cli": "^4.0.0"
|
|
}
|
|
}
|