-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 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
34
35
36
37
38
39
40
{
"name": "arona",
"version": "1.0.0",
"scripts": {
"dev": "bun run --watch src/index.ts",
"dev:up": "docker compose up -d",
"dev:down": "docker compose down",
"db:setup": "bun run scripts/db.ts"
},
"dependencies": {
"@ai-sdk/cerebras": "^2.0.12",
"@ai-sdk/groq": "^3.0.9",
"@ai-sdk/openai": "^3.0.11",
"@bogeychan/elysia-logger": "^0.1.10",
"@elysiajs/cors": "^1.4.1",
"@elysiajs/openapi": "^1.4.13",
"@elysiajs/opentelemetry": "^1.4.10",
"@openrouter/ai-sdk-provider": "^2.2.3",
"@opentelemetry/exporter-trace-otlp-proto": "^0.210.0",
"@opentelemetry/sdk-trace-node": "^2.4.0",
"ai": "^6.0.37",
"axiom": "^0.38.0",
"croner": "^10.0.1",
"elysia": "^1.4.25",
"ioredis": "^5.9.3",
"lru-cache": "^11.2.6",
"pino-opentelemetry-transport": "^2.0.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/bun": "^1.3.6",
"p-queue": "^9.1.0"
},
"overrides": {
"zod": "^4.2.1"
},
"module": "src/index.js"
}