- Fight loop CLI with TUI renderer (ink-style terminal UI) - Rate limiting middleware for API routes - Queue cooldowns wired into orchestrator after fights - Webhook test utility for bot debugging - API docs route - Expanded FightScene choreographies and weapon props - Fix Drizzle transaction execution in orchestrator - Schema additions, scoring/challenge/mock expansions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
662 B
JSON
29 lines
662 B
JSON
{
|
|
"name": "server",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"seed": "tsx src/seed.ts",
|
|
"fight-loop": "tsx src/fight-loop-cli.ts",
|
|
"migrate": "tsx src/db/migrate.ts"
|
|
},
|
|
"dependencies": {
|
|
"@hono/node-server": "^1.14.1",
|
|
"better-sqlite3": "^11.9.1",
|
|
"chalk": "^5.6.2",
|
|
"drizzle-orm": "^0.40.1",
|
|
"hono": "^4.7.6",
|
|
"nanoid": "^5.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/node": "^22.13.14",
|
|
"drizzle-kit": "^0.30.5",
|
|
"tsx": "^4.19.3",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|