- Vue 3 + Vite + Tailwind 4 frontend with synthwave aesthetic - Hono backend on port 9100 with SQLite/Drizzle - Procedural pixel-art sprite generator (48x48, 8 animation states) - Kaplay fight scene with punch/kick/special/knockback/KO animations - 12 mock bots across 6 tiers with Elo rating system - 9 challenge types, 10 fight arenas with modifiers - Fight replay with staggered battle log and ~1 min timing - Sprite preview page at /sprites Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
680 B
JSON
21 lines
680 B
JSON
{
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "concurrently -n fe,be -c cyan,green \"pnpm --filter frontend dev\" \"pnpm --filter server dev\"",
|
|
"dev:fe": "pnpm --filter frontend dev",
|
|
"dev:be": "pnpm --filter server dev",
|
|
"build": "pnpm --filter frontend build && pnpm --filter server build",
|
|
"test": "vitest",
|
|
"lint": "eslint .",
|
|
"typecheck": "vue-tsc --noEmit -p frontend/tsconfig.json && tsc --noEmit -p server/tsconfig.json",
|
|
"clean": "rm -rf frontend/dist server/dist",
|
|
"seed": "pnpm --filter server seed"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.1.2",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^3.1.1"
|
|
}
|
|
}
|