Files
blind_chess/packages/server/package.json
T
claude (blind_chess) 5e180d08b0 refactor: trim over-engineering (ponytail-audit)
- ws → devDependencies (src uses type-only; runtime comes via @fastify/websocket)
- delete bot/index.ts barrel; import casual-brain/driver directly
- untrack tsconfig.tsbuildinfo (already gitignored)
- vanillaCandidates: push-loop → .map()

94 tests pass, build clean.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-26 08:33:35 -04:00

34 lines
775 B
JSON

{
"name": "@blind-chess/server",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "dist/server.js",
"scripts": {
"build": "tsc -b",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@blind-chess/shared": "workspace:*",
"@fastify/static": "^8.0.0",
"@fastify/websocket": "^11.0.0",
"chess.js": "^1.4.0",
"fastify": "^5.2.0",
"js-chess-engine": "^2.4.6",
"pino": "^9.5.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/ws": "^8.5.13",
"pino-pretty": "^11.3.0",
"tsx": "^4.19.2",
"typescript": "^5.6.0",
"vitest": "^3.0.0",
"ws": "^8.18.0"
}
}