forked from y13sint/FreeQwenApi
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.61 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": "qwen-api-proxy",
"version": "1.0.0",
"description": "Прокси-сервер для доступа к Qwen API через эмуляцию браузера",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"test": "node --test tests/*.test.js",
"example:stream": "node examples/openai-sdk/streaming.js",
"example:simple": "node examples/openai-sdk/simple.js",
"example:system": "node examples/openai-sdk/system-message.js",
"example:image": "node examples/openai-sdk/image-analysis.js",
"example:conversation": "node examples/openai-sdk/conversation.js",
"example:compatibility": "node examples/openai-sdk/openai-compatibility.js",
"example:direct": "node examples/direct-api/fetch-example.js",
"example:axios": "node examples/direct-api/axios-example.js",
"example:file-upload": "node examples/file-upload/upload-example.js",
"example:streaming-test": "node examples/streaming-test.js",
"auth": "node scripts/auth.js",
"models:sync": "node scripts/sync_models.js",
"smoke": "node scripts/smoke_test.js"
},
"dependencies": {
"ali-oss": "^6.23.0",
"axios": "^1.9.0",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"form-data": "^4.0.2",
"morgan": "^1.10.0",
"multer": "^2.0.0",
"node-fetch": "^3.3.2",
"openai": "^4.104.0",
"puppeteer": "^24.31.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"winston": "^3.17.0"
}
}