forked from BlockRunAI/ClawRouter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.48 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.48 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
{
"name": "@blockrun/clawrouter",
"version": "0.3.27",
"description": "Smart LLM router — save 78% on inference costs. 30+ models, one wallet, x402 micropayments.",
"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": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"llm",
"router",
"smart-routing",
"ai",
"openclaw",
"blockrun",
"x402",
"usdc",
"cost-optimization",
"openai",
"anthropic",
"gemini",
"deepseek"
],
"author": "BlockRun <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BlockRunAI/ClawRouter.git"
},
"dependencies": {
"viem": "^2.39.3"
},
"peerDependencies": {
"openclaw": ">=2025.1.0"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"openclaw": "latest",
"prettier": "^3.8.1",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.54.0"
},
"engines": {
"node": ">=20"
}
}