managarten/games/arcade/apps/server/package.json
Till JS 6e75718cfa feat(arcade): migrate backend from NestJS to Hono/Bun
Replace @arcade/backend (NestJS) with @arcade/server (Hono/Bun).
Same two endpoints, no auth required (public game generator):
- POST /api/games/generate — AI game generation (Gemini, Claude, GPT)
- POST /api/games/submit  — Community game submission via GitHub PR
- GET  /health            — Health check

This removes the last remaining NestJS backend from the monorepo.
NestJS is now completely gone — all servers use Hono + Bun.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-31 17:02:14 +02:00

20 lines
432 B
JSON

{
"name": "@arcade/server",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"start": "bun run src/index.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.65.0",
"@google/genai": "^1.14.0",
"hono": "^4.7.5",
"openai": "^4.76.0"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.7.2"
}
}