-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 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
{
"name": "aiclient2api",
"version": "3.0.0",
"type": "module",
"dependencies": {
"@ai-sdk/openai": "^3.0.61",
"@anthropic-ai/tokenizer": "^0.0.4",
"adm-zip": "^0.5.16",
"ai": "^6.0.175",
"axios": "^1.14.0",
"busboy": "^1.6.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.6.1",
"google-auth-library": "^10.1.0",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"lodash": "^4.17.21",
"multer": "^2.0.2",
"open": "^10.2.0",
"openai": "^6.36.0",
"socks-proxy-agent": "^8.0.5",
"undici": "^7.12.0",
"uuid": "^11.1.0",
"ws": "^8.19.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/core/master.js",
"start:standalone": "node src/services/api-server.js",
"start:dev": "node src/core/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",
"help": "node src/scripts/help.js",
"example:api": "node src/scripts/example-api.js"
}
}