ai-code-battle/starters/typescript/package.json
jedarden 164fcd225b feat(starter-typescript): add TypeScript/Node.js starter kit with Fastify
- Fastify HTTP server with HMAC-SHA256 authentication
- Full TypeScript type definitions for game protocol
- Grid utilities: toroidal distance, BFS, neighbors
- HMAC signing/verification via Node.js crypto
- Multi-stage Dockerfile for production builds
- GitHub Actions workflow for CI/CD
- Placeholder strategy that moves toward energy
- ES modules with Node.js 20+ support
2026-05-08 10:30:21 -04:00

25 lines
586 B
JSON

{
"name": "acb-starter-typescript",
"version": "1.0.0",
"description": "TypeScript/Node.js starter kit for AI Code Battle",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"typecheck": "tsc --noEmit"
},
"keywords": ["ai-code-battle", "bot", "game", "typescript"],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"fastify": "^5.2.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}