openclaw/extensions/mattermost/package.json
Dominic Damoah c109bb4bdf ```
feat(mattermost): add ws and zod dependencies
```

Mattermost plugin: ship runtime deps for zod/ws

Optional body (if you want one):
Fixes plugin load failure when installed under ~/.clawdbot/extensions by declaring zod and ws as runtime dependencies.
2026-01-27 00:20:12 -05:00

30 lines
705 B
JSON

{
"name": "@clawdbot/mattermost",
"version": "2026.1.25",
"type": "module",
"description": "Clawdbot Mattermost channel plugin",
"clawdbot": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "mattermost",
"label": "Mattermost",
"selectionLabel": "Mattermost (plugin)",
"docsPath": "/channels/mattermost",
"docsLabel": "mattermost",
"blurb": "self-hosted Slack-style chat; install the plugin to enable.",
"order": 65
},
"install": {
"npmSpec": "@clawdbot/mattermost",
"localPath": "extensions/mattermost",
"defaultChoice": "npm"
}
},
"dependencies": {
"ws": "^8.19.0",
"zod": "^4.3.6"
}
}