-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 985 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 985 Bytes
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
{
"name": "llm-relay",
"version": "0.0.0",
"workspaces": [
"console/ai-proxy-dashboard"
],
"devDependencies": {
"@types/bun": "^1.3.11",
"drizzle-kit": "^0.31.9",
"shadcn": "^4.0.5",
"typescript": "^5.8.3"
},
"private": true,
"scripts": {
"dev": "bun run scripts/dev.ts",
"dev:server": "bun --watch src/server.ts",
"dev:client": "bun run --cwd ./console/ai-proxy-dashboard dev",
"build": "bun run --cwd ./console/ai-proxy-dashboard build",
"build:client": "bun run --cwd ./console/ai-proxy-dashboard build",
"start": "bun run src/server.ts",
"test": "bun test",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"hooks:install": "git config core.hooksPath .githooks"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.14",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.6",
"postgres": "^3.4.7"
}
}