-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.24 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.24 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
{
"name": "@ecoclaw/claw",
"version": "0.1.0",
"description": "Benchmark-driven LLM router — routes to the best model per task using PinchBench data",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"openclaw": {
"extensions": [
"./dist/index.js"
]
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"openclaw.plugin.json"
],
"scripts": {
"build:embeddings": "tsx scripts/build-embeddings.ts",
"pull:snapshot": "tsx scripts/pull-snapshot.ts",
"prebuild": "npm run build:embeddings",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"llm",
"router",
"benchmark",
"pinchbench",
"openclaw",
"openrouter",
"smart-routing"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^25.3.5",
"tsup": "^8.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"openclaw": ">=2025.1.0"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"engines": {
"node": ">=20"
}
}