-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 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
{
"name": "ai-proxy-api",
"version": "1.0.0",
"description": "Unified API proxy supporting OpenAI, Claude, and Gemini model providers with provider pool management, automatic failover, and OAuth authentication.",
"author": "Nikunj Khitha",
"type": "module",
"dependencies": {
"@anthropic-ai/tokenizer": "^0.0.4",
"ai": "^5.0.116",
"ai-sdk-provider-claude-code": "^2.2.4",
"adm-zip": "^0.5.16",
"axios": "^1.10.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"google-auth-library": "^10.1.0",
"ioredis": "^5.4.1",
"lodash": "^4.17.21",
"multer": "^2.0.2",
"open": "^10.2.0",
"pg": "^8.13.0",
"undici": "^7.12.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@jest/globals": "^29.7.0",
"babel-jest": "^30.0.5",
"babel-plugin-transform-import-meta": "^2.3.3",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"supertest": "^6.3.3"
},
"scripts": {
"start": "node src/master.js",
"start:standalone": "node src/api-server.js",
"start:dev": "node src/master.js --dev",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:silent": "jest --silent",
"test:unit": "node run-tests.js --unit",
"test:integration": "node run-tests.js --integration",
"test:summary": "node test-summary.js"
}
}