- Fixed YAML parse error (unquoted colon in description broke @scalar/json-magic) - Converted orval.config.ts → orval.config.cjs (fixes orval v8 TypeScript config loading) - Codegen now works: zod schemas + React Query hooks regenerated with Gemini types - Added Gemini tag, 4 path groups, 8 schemas to openapi.yaml - lib/integrations-gemini-ai wired: tsconfig refs, api-server package.json dep - Created routes/gemini.ts: CRUD conversations/messages + SSE chat stream + image gen - Mounted /gemini router in routes/index.ts
34 lines
908 B
JSON
34 lines
908 B
JSON
{
|
|
"name": "@workspace/api-server",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development tsx ./src/index.ts",
|
|
"build": "tsx ./build.ts",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"smoke": "tsx ./src/smoke.ts"
|
|
},
|
|
"dependencies": {
|
|
"@workspace/api-zod": "workspace:*",
|
|
"@workspace/db": "workspace:*",
|
|
"@workspace/integrations-anthropic-ai": "workspace:*",
|
|
"@workspace/integrations-gemini-ai": "workspace:*",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2",
|
|
"drizzle-orm": "catalog:",
|
|
"express": "^5",
|
|
"express-rate-limit": "^8.3.1",
|
|
"nostr-tools": "^2.23.3",
|
|
"ws": "^8.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cookie-parser": "^1.4.10",
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^5.0.6",
|
|
"@types/node": "catalog:",
|
|
"@types/ws": "^8.18.1",
|
|
"esbuild": "^0.27.3",
|
|
"tsx": "catalog:"
|
|
}
|
|
}
|