-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1014 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1014 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
44
{
"name": "@openclaw-channel/socket-chat",
"version": "1.0.8",
"description": "OpenClaw Socket Chat channel plugin — MQTT-based IM bridge",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"mqtt": "^5.10.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.3",
"vitest": "^2.0.0"
},
"peerDependencies": {
"openclaw": "*"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "socket-chat",
"label": "Socket Chat",
"selectionLabel": "Socket Chat (MQTT plugin)",
"docsPath": "/channels/socket-chat",
"docsLabel": "socket-chat",
"blurb": "MQTT-based IM bridge; configure an API key to connect.",
"order": 90
},
"install": {
"npmSpec": "@openclaw-channel/socket-chat",
"localPath": ".",
"defaultChoice": "local"
}
}
}