Files
openclaw/extensions/googlechat/package.json

38 lines
872 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-26 12:10:08 +01:00
"version": "2026.2.26",
"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.6.1"
2026-01-31 21:13:13 +09:00
},
"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"
}
}
}