Files
botfights/server/package.json
T
DorianandClaude Opus 4.6 2c0323d5fb feat: v3 — fight loop, expanded challenges, FightPage ownership guard
- Add fight-loop CLI for automated mock fights with elo-based matchmaking
- Expand challenge types, scoring narrations, arenas, and mock bot pool
- FightPage "Fight again" buttons now only show for your own bot
- FightViewer async scene init, live fight polling with round counter
- Extract mock answers into separate answers module

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 23:44:40 +00:00

28 lines
639 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": "^4.7.6",
"@hono/node-server": "^1.14.1",
"drizzle-orm": "^0.40.1",
"better-sqlite3": "^11.9.1",
"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"
}
}