forked from donvito/ai-backends
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "ai-backend",
"scripts": {
"dev": "NODE_ENV=development BUN_DEBUG=true bun run --hot src/index.ts",
"start": "bun src/index.ts",
"build": "echo \"No build needed (Bun runs TS directly).\"",
"docs:redoc": "redoc-cli build http://localhost:3000/api/doc --output docs/redoc.html",
"docs:redoc-serve": "redoc-cli serve http://localhost:3000/api/doc"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/openai": "^1.3.23",
"@ai-sdk/openai-compatible": "0.2.16",
"@anthropic-ai/sdk": "^0.57.0",
"@hono/node-server": "^1.18.2",
"@hono/swagger-ui": "^0.5.1",
"@hono/zod-openapi": "^0.19.6",
"@openrouter/ai-sdk-provider": "^0.7.3",
"ai": "4.3.19",
"bun": "^1.2.20",
"hono": "^4.9.0",
"ollama-ai-provider": "^1.2.0",
"openai": "^4.100.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
"zod": "^3.24.4",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/bun": "latest",
"redoc-cli": "^0.13.21"
}
}