-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "@kianwoon/modelweaver",
"version": "0.3.91",
"description": "Multi-provider model orchestration proxy for Claude Code",
"type": "module",
"main": "dist/index.js",
"bin": {
"modelweaver": "dist/index.js",
"mw": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"start": "node dist/index.js start",
"stop": "node dist/index.js stop",
"status": "node dist/index.js status",
"remove": "node dist/index.js remove",
"test": "vitest run",
"test:watch": "vitest",
"bench": "vitest bench"
},
"dependencies": {
"@hono/node-server": "^2.0.0",
"dotenv": "^17.3.1",
"hono": "^4.12.8",
"prompts": "^2.4.2",
"undici": "^8.0.0",
"ws": "^8.19.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/prompts": "^2.4.9",
"@types/ws": "^8.18.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}