-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.22 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "qwen-gate",
"version": "0.7.0",
"description": "OpenAI-compatible API gateway for Qwen models — drop-in replacement for /v1/chat/completions with multi-account rotation, tool calling, streaming SSE, and web dashboard",
"main": "src/index.tsx",
"bin": {
"qg": "./bin/qg",
"qwengate": "./bin/qg",
"qwen-gate": "./bin/qg"
},
"scripts": {
"postinstall": "node scripts/setup.js || exit 0",
"build": "tsc -p tsconfig.build.json",
"start": "bun src/index.tsx",
"start:prod": "bun dist/index.js",
"start:node": "node --import tsx src/index.tsx",
"dev": "bun --watch src/index.tsx",
"start:firefox": "bun src/index.tsx --browser=firefox",
"start:chrome": "bun src/index.tsx --browser=chrome",
"start:edge": "bun src/index.tsx --browser=edge",
"cluster": "bun src/cluster.ts",
"setup": "node scripts/setup.js",
"test": "biome check src/ && bun test",
"test:coverage": "bun test --coverage",
"format": "biome check --write src/",
"format:check": "biome check src/",
"lint": "oxlint --fix-suggestions --format agent src/",
"lint:check": "oxlint --format agent src/",
"knip": "knip",
"knip:fix": "knip --fix",
"quality": "biome check --write src/ && oxlint --fix-suggestions --format agent src/ && bun test",
"husky-init": "npx husky init",
"qg": "bun src/cli.ts",
"qg:restart": "bun src/cli.ts restart"
},
"keywords": [
"qwen",
"api-gateway",
"openai-compatible",
"playwright",
"hono",
"typescript",
"sse",
"tool-calling",
"multi-account",
"browser-automation",
"proxy",
"llm-gateway",
"openai-proxy",
"qwen-ai",
"chat-completions",
"function-calling"
],
"author": "Youssef Adel",
"license": "MIT",
"dependencies": {
"@hono/node-server": "^2.0.3",
"cloakbrowser": "^0.4.3",
"dotenv": "^16.6.1",
"hono": "^4.12.21",
"playwright": "^1.60.0",
"playwright-core": "^1.61.0",
"wreq-js": "^2.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@types/bun": "^1.3.14",
"@types/node": "^25.9.1",
"knip": "^6.17.1",
"oxlint": "^1.70.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
},
"type": "module"
}