- /api/health: DB ping + version + uptime - /api/auth/*: NextAuth -> Auth.js standalone (credentials + passkey) - /api/domains: full CRUD - /api/realtime: SSE with PostgreSQL LISTEN/NOTIFY - /mcp: JSON-RPC 2.0 (initialize, tools/list, tools/call, resources/*) Parent: t_e1cbd87d -> t_d8654a91 (T1)
24 lines
491 B
JSON
24 lines
491 B
JSON
{
|
|
"name": "@project-e/api",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"start": "bun run src/index.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@project-e/db": "^0.1.0",
|
|
"hono": "^4.6.0",
|
|
"drizzle-orm": "^0.45.2",
|
|
"postgres": "^3.4.9",
|
|
"bcryptjs": "^2.4.3",
|
|
"jose": "^5.9.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.19.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|