Files
openclaw/extensions/mattermost/package.json
T
Peter Steinberger f9dbc5b669 chore(release): rebase 2026.8.1 beta.2 onto main
Rebuild 2026.8.1-beta.2 on frozen main commit be600d0a24, including the trusted Telegram isolation repair.

Preserve the still-release-specific plugin/package fixture corrections, Matrix/Buzz QA ownership, current generated config and locale artifacts, and restore intentional out-of-band Slack native approvals after an unrelated forwarded-image PR added a conflicting channel guard.

Co-authored-by: Vincent Koc <vincentkoc@ieee.org>
Co-authored-by: Vyctor H. Brzezowski <51521767+vyctorbrzezowski@users.noreply.github.com>
Co-authored-by: Ayaan Zaidi <hi@obviy.us>
2026-08-12 18:27:10 -07:00

107 lines
2.6 KiB
JSON

{
"name": "@openclaw/mattermost",
"version": "2026.8.1-beta.2",
"description": "OpenClaw Mattermost channel plugin",
"repository": {
"type": "git",
"url": "https://github.com/openclaw/openclaw"
},
"type": "module",
"dependencies": {
"ws": "8.21.1",
"zod": "4.4.3"
},
"devDependencies": {
"@openclaw/plugin-sdk": "workspace:*",
"openclaw": "workspace:*"
},
"peerDependencies": {
"openclaw": ">=2026.8.1-beta.2"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"openclaw": {
"extensions": [
"./index.ts"
],
"setupEntry": "./setup-entry.ts",
"channel": {
"id": "mattermost",
"configuredState": {
"env": {
"allOf": [
"MATTERMOST_BOT_TOKEN",
"MATTERMOST_URL"
]
}
},
"label": "Mattermost",
"selectionLabel": "Mattermost (plugin)",
"docsPath": "/channels/mattermost",
"docsLabel": "mattermost",
"blurb": "self-hosted Slack-style chat; install the plugin to enable.",
"order": 65,
"setup": {
"fields": [
{
"key": "token",
"kind": "string",
"sensitive": true,
"cli": {
"flags": "--token <token>",
"description": "Mattermost bot token"
}
},
{
"key": "botToken",
"kind": "string",
"sensitive": true,
"cli": {
"flags": "--bot-token <token>",
"description": "Mattermost bot token"
}
},
{
"key": "httpUrl",
"kind": "string",
"cli": {
"flags": "--http-url <url>",
"description": "Mattermost server URL"
}
},
{
"key": "useEnv",
"kind": "boolean",
"cli": {
"flags": "--use-env",
"description": "Use Mattermost environment credentials"
},
"envVars": ["MATTERMOST_BOT_TOKEN", "MATTERMOST_URL"]
}
]
}
},
"install": {
"clawhubSpec": "clawhub:@openclaw/mattermost",
"npmSpec": "@openclaw/mattermost",
"defaultChoice": "npm",
"minHostVersion": ">=2026.6.9",
"allowInvalidConfigRecovery": true
},
"compat": {
"pluginApi": ">=2026.8.1-beta.2"
},
"build": {
"openclawVersion": "2026.8.1-beta.2",
"bundledDist": false
},
"release": {
"publishToClawHub": true,
"publishToNpm": true
}
}
}