-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "claude-proxy",
"version": "1.0.0",
"description": "API proxy for routing Claude requests by model to different backends",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/pbuchman/claude-proxy"
},
"license": "MIT",
"keywords": [
"claude",
"proxy",
"api",
"anthropic",
"routing",
"analytics",
"z.ai",
"llm",
"claude-code"
],
"author": "Piotr Buchman",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "nodemon --signal SIGTERM --watch src --ext ts --exec 'tsx src/index.ts'",
"build": "tsc",
"start": "node dist/index.js",
"stats": "tsx src/stats.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.ts' '*.md'",
"format:check": "prettier --check 'src/**/*.ts' '*.md'",
"test": "vitest run",
"test:watch": "vitest",
"check": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm build && pnpm test"
},
"dependencies": {
"@fastify/static": "^9.0.0",
"dotenv": "^16.4.5",
"fastify": "^5.0.0",
"pino": "^9.0.0",
"pino-pretty": "^11.0.0",
"undici": "^7.21.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"eslint": "^9.39.2",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}