-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.19 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
{
"name": "web-model-bridge",
"version": "0.1.0",
"description": "Bridge web AI models through OpenAI-compatible API",
"type": "module",
"main": "dist/cli.js",
"bin": {
"web-model-bridge": "dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit && vitest run"
},
"engines": {
"node": ">=20"
},
"keywords": [
"openai",
"web-model",
"bridge",
"proxy",
"claude",
"chatgpt",
"deepseek"
],
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.19.12",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"hono": "^4.12.10",
"js-yaml": "^4.1.1",
"open": "^11.0.0",
"playwright-core": "^1.59.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.2",
"msw": "^2.12.14",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}