mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-22 15:31:07 +00:00
* fix(plugin-sdk): remove relative extension boundary escapes * Gate new plugin-sdk subpaths on host version * Add changelog entry for #51939 * Fix local staging for plugin-sdk host version gate * Raise host floor for line and googlechat plugins --------- Co-authored-by: Tak Hoffman <781889+Takhoffman@users.noreply.github.com>
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "@openclaw/googlechat",
|
|
"version": "2026.3.14",
|
|
"private": true,
|
|
"description": "OpenClaw Google Chat channel plugin",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"google-auth-library": "^10.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"openclaw": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.3.14"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openclaw": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"channel": {
|
|
"id": "googlechat",
|
|
"label": "Google Chat",
|
|
"selectionLabel": "Google Chat (Chat API)",
|
|
"detailLabel": "Google Chat",
|
|
"docsPath": "/channels/googlechat",
|
|
"docsLabel": "googlechat",
|
|
"blurb": "Google Workspace Chat app via HTTP webhooks.",
|
|
"aliases": [
|
|
"gchat",
|
|
"google-chat"
|
|
],
|
|
"order": 55
|
|
},
|
|
"install": {
|
|
"npmSpec": "@openclaw/googlechat",
|
|
"localPath": "extensions/googlechat",
|
|
"defaultChoice": "npm"
|
|
}
|
|
}
|
|
}
|