Files
openclaw/extensions/googlechat/package.json

41 lines
930 B
JSON
Raw Normal View History

2026-01-23 16:45:37 -06:00
{
2026-01-30 03:15:10 +01:00
"name": "@openclaw/googlechat",
2026-02-12 18:20:26 +01:00
"version": "2026.2.12",
"private": true,
2026-01-30 03:15:10 +01:00
"description": "OpenClaw Google Chat channel plugin",
2026-01-31 21:13:13 +09:00
"type": "module",
"dependencies": {
"google-auth-library": "^10.5.0"
},
"devDependencies": {
"openclaw": "workspace:*"
},
"peerDependencies": {
"openclaw": ">=2026.1.26"
},
2026-01-30 03:15:10 +01:00
"openclaw": {
2026-01-23 16:45:37 -06:00
"extensions": [
"./index.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": {
2026-01-30 03:15:10 +01:00
"npmSpec": "@openclaw/googlechat",
2026-01-23 16:45:37 -06:00
"localPath": "extensions/googlechat",
"defaultChoice": "npm"
}
}
}