-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 997 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 997 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
45
46
47
{
"name": "@wunderchat/openclaw-channel-streamchat",
"version": "0.1.0",
"description": "Stream Chat messaging channel plugin for OpenClaw",
"main": "index.ts",
"type": "module",
"files": [
"index.ts",
"src",
"openclaw.plugin.json"
],
"scripts": {
"type-check": "tsc --noEmit"
},
"dependencies": {
"stream-chat": "^9.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"dotenv": "^17.3.1",
"typescript": "^5.3.0"
},
"peerDependencies": {
"openclaw": ">=2026.2.13"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"channels": [
"streamchat"
],
"installDependencies": true,
"channel": {
"id": "streamchat",
"label": "Stream Chat",
"selectionLabel": "Stream Chat",
"docsPath": "/channels/streamchat",
"blurb": "Stream Chat messaging channel with AI streaming support.",
"order": 80,
"aliases": [
"sc"
]
}
}
}