mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-23 07:51:33 +00:00
* fix(plugins): enforce min host versions * fix(plugins): tighten min host version validation * chore(plugins): trim dead min host version code * fix(plugins): handle malformed min host metadata * fix(plugins): key manifest cache by host version
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"name": "@openclaw/msteams",
|
|
"version": "2026.3.14",
|
|
"description": "OpenClaw Microsoft Teams channel plugin",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@microsoft/agents-hosting": "^1.4.1",
|
|
"express": "^5.2.1",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"openclaw": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.3.14"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openclaw": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"channel": {
|
|
"id": "msteams",
|
|
"label": "Microsoft Teams",
|
|
"selectionLabel": "Microsoft Teams (Bot Framework)",
|
|
"docsPath": "/channels/msteams",
|
|
"docsLabel": "msteams",
|
|
"blurb": "Bot Framework; enterprise support.",
|
|
"aliases": [
|
|
"teams"
|
|
],
|
|
"order": 60
|
|
},
|
|
"install": {
|
|
"npmSpec": "@openclaw/msteams",
|
|
"localPath": "extensions/msteams",
|
|
"defaultChoice": "npm",
|
|
"minHostVersion": ">=2026.3.14"
|
|
},
|
|
"release": {
|
|
"publishToNpm": true
|
|
}
|
|
}
|
|
}
|