-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.7 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.7 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
{
"name": "@bitrouter.ai/openclaw-plugin",
"version": "0.1.1",
"description": "BitRouter integration for OpenClaw — transparent LLM routing with failover, load balancing, and multi-provider support.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"skills/",
"openclaw.plugin.json",
"README.md"
],
"scripts": {
"build": "tsc && npm run copy-assets",
"copy-assets": "cp -r skills dist/ && cp openclaw.plugin.json dist/",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"dependencies": {
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^25.6.0",
"openclaw": "^2026.3.24",
"typescript": "^6.0.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"providers": [
"bitrouter"
],
"install": {
"npmSpec": "@bitrouter.ai/openclaw-plugin",
"minHostVersion": ">=2026.3.24"
},
"compat": {
"pluginApi": ">=2026.3.24",
"minGatewayVersion": "2026.3.24"
},
"build": {
"openclawVersion": "2026.3.24",
"pluginSdkVersion": "2026.3.24"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bitrouter/bitrouter-openclaw.git"
},
"keywords": [
"openclaw",
"bitrouter",
"llm",
"proxy",
"routing",
"openai",
"anthropic",
"google"
],
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}