-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.15 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
{
"name": "ai-gateway",
"version": "0.2.0",
"private": true,
"description": "Open-source LLM Gateway with real-time monitoring dashboard",
"keywords": [
"ai",
"gateway",
"llm",
"monitoring",
"proxy"
],
"license": "MIT",
"author": "ieuforu",
"type": "module",
"scripts": {
"dev": "pnpm --parallel -r dev",
"dev:gateway": "pnpm --filter @ai-gateway/gateway dev",
"dev:dashboard": "pnpm --filter @ai-gateway/dashboard dev",
"build": "pnpm --parallel -r build",
"typecheck": "pnpm --parallel -r typecheck",
"lint": "pnpm --parallel -r lint",
"fmt": "pnpm --parallel -r fmt",
"test": "pnpm --parallel -r test",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"db:up": "docker compose up -d --wait postgres",
"db:down": "docker compose down",
"db:push": "pnpm --filter @ai-gateway/gateway db:push",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules"
},
"devDependencies": {
"@hono/node-server": "^2.1.1",
"@types/node": "^26.4.0",
"oxfmt": "^0.65.0",
"oxlint": "^1.69.0",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}