-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.21 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
{
"name": "@openclaw/bot-bridge",
"version": "2.0.0",
"description": "通用跨 OpenClaw 实例通信桥接 - 支持多种传输协议",
"main": "src/server.js",
"bin": {
"bot-bridge": "./bin/cli.js"
},
"scripts": {
"setup": "node bin/setup.js",
"start": "node src/server.js",
"dashboard": "node src/dashboard.js",
"dev": "NODE_ENV=development node src/server.js",
"test": "node bin/cli.js test",
"status": "node bin/cli.js status",
"logs": "node bin/cli.js logs"
},
"keywords": [
"openclaw",
"agent",
"bridge",
"communication",
"webhook",
"websocket",
"mqtt",
"redis",
"bot-to-bot",
"cross-instance"
],
"author": "OpenClaw Community",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shodan1q/bot-bridge"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"commander": "^11.1.0",
"express": "^4.18.2",
"winston": "^3.11.0",
"ws": "^8.19.0"
},
"openclaw": {
"skill": true,
"category": "communication",
"tags": [
"bridge",
"webhook",
"cross-instance",
"networking"
],
"minVersion": "2026.1.0"
}
}