Files
droidclaw/server/package.json
Sanju Sivalingam bc014fd587 feat: scaffold Hono server with auth and health check
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 14:07:19 +05:30

22 lines
455 B
JSON

{
"name": "@droidclaw/server",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@droidclaw/shared": "workspace:*",
"hono": "^4.7.0",
"better-auth": "^1.3.27",
"drizzle-orm": "^0.44.5",
"postgres": "^3.4.7"
},
"devDependencies": {
"@types/bun": "^1.1.0",
"typescript": "^5.9.2"
}
}