-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 965 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 965 Bytes
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
{
"name": "@openclaw/smart-routing",
"version": "2026.3.7",
"description": "Automatic complexity-based model routing for OpenClaw — route requests to the right model based on prompt complexity",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openclaw/smart-routing.git"
},
"homepage": "https://github.com/openclaw/smart-routing#readme",
"bugs": {
"url": "https://github.com/openclaw/smart-routing/issues"
},
"keywords": [
"openclaw",
"plugin",
"model-routing",
"smart-routing",
"llm",
"cost-optimization"
],
"openclaw": {
"extensions": ["./index.ts"]
},
"files": [
"index.ts",
"src/",
"openclaw.plugin.json",
"README.md"
],
"devDependencies": {
"openclaw": "*",
"vitest": "^4.0.0"
},
"peerDependencies": {
"openclaw": ">=2026.0.0"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest"
}
}