openclaw/extensions/zoom/package.json
Pranav Katariya f1a7f254d1 feat: add Zoom Team Chat channel plugin
- Add core Zoom implementation (src/zoom/)
- Add Zoom channel plugin extension (extensions/zoom/)
- Add Zoom onboarding adapter for QuickStart wizard
- Add comprehensive Zoom documentation
- Export Zoom types and adapters in plugin SDK
- Add Zoom to channel documentation index
- Fix format-staged.js to use node oxfmt directly (ESM compat)
- Fix pre-commit hook to use Node 22 via nvm

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-27 17:44:29 -08:00

26 lines
606 B
JSON

{
"name": "@moltbot/zoom",
"version": "2026.1.27",
"type": "module",
"description": "Moltbot Zoom Team Chat channel plugin",
"moltbot": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "zoom",
"label": "Zoom",
"selectionLabel": "Zoom Team Chat",
"docsPath": "/channels/zoom",
"docsLabel": "zoom",
"blurb": "Zoom Team Chat via Team Chat Bot API.",
"order": 45,
"quickstartAllowFrom": true
},
"install": {
"npmSpec": "@moltbot/zoom",
"localPath": "extensions/zoom",
"defaultChoice": "local"
}
}
}