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.
30 lines
705 B
JSON
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"
|
|
}
|
|
}
|