Files
openclaw/extensions/googlechat/package.json
Peter Steinberger acd92f6a3d chore(deps): refresh repository dependencies (#112453)
* build(deps): update QA broker dependency

* build(deps): refresh repository dependencies

* build(deps): reconcile rebased shrinkwraps

* test(plugins): remove stale loader test state

* test(deps): stabilize updated dependency coverage

* fix(swift): use caller-isolated TaskLocal overload

* build(deps): regenerate rebased shrinkwraps

* test(msteams): preserve DNS validation in fetch helper

* fix(deps): avoid vulnerable optional image stack

* test(deps): validate generated LRU override

* refactor(ui): extract chat resizable divider

* test(ui): update divider ownership path

* fix(matrix): retain restart-compatible SDK

* style(cron): format update test
2026-07-23 16:17:13 +00:00

123 lines
3.3 KiB
JSON

{
"name": "@openclaw/googlechat",
"version": "2026.7.2",
"description": "OpenClaw Google Chat channel plugin for spaces and direct messages.",
"repository": {
"type": "git",
"url": "https://github.com/openclaw/openclaw"
},
"type": "module",
"dependencies": {
"google-auth-library": "10.9.0",
"zod": "4.4.3"
},
"devDependencies": {
"@openclaw/plugin-sdk": "workspace:*",
"openclaw": "workspace:*"
},
"peerDependencies": {
"openclaw": ">=2026.7.2"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"openclaw": {
"extensions": [
"./index.ts"
],
"setupEntry": "./setup-entry.ts",
"channel": {
"id": "googlechat",
"configuredState": {
"env": {
"anyOf": [
"GOOGLE_CHAT_SERVICE_ACCOUNT",
"GOOGLE_CHAT_SERVICE_ACCOUNT_FILE"
]
}
},
"approvalFlags": [
"native"
],
"label": "Google Chat",
"selectionLabel": "Google Chat (Chat API)",
"detailLabel": "Google Chat",
"docsPath": "/channels/googlechat",
"docsLabel": "googlechat",
"blurb": "Google Workspace Chat app with HTTP webhook.",
"aliases": [
"gchat",
"google-chat"
],
"order": 55,
"systemImage": "message.badge",
"markdownCapable": true,
"doctorCapabilities": {
"dmAllowFromMode": "nestedOnly",
"groupModel": "route",
"groupAllowFromFallbackToAllowFrom": false,
"warnOnEmptyGroupSenderAllowlist": false
},
"setup": {
"fields": [
{
"key": "token",
"kind": "string",
"sensitive": true,
"cli": { "flags": "--token <json>", "description": "Google Chat service account JSON" }
},
{
"key": "tokenFile",
"kind": "string",
"sensitive": true,
"cli": { "flags": "--token-file <path>", "description": "Google Chat service account file" }
},
{
"key": "audienceType",
"kind": "choice",
"choices": ["app-url", "project-number"],
"cli": { "flags": "--audience-type <type>", "description": "Google Chat audience type" }
},
{
"key": "audience",
"kind": "string",
"cli": { "flags": "--audience <value>", "description": "Google Chat audience value" }
},
{
"key": "webhookPath",
"kind": "string",
"cli": { "flags": "--webhook-path <path>", "description": "Google Chat webhook path" }
},
{
"key": "webhookUrl",
"kind": "string",
"cli": { "flags": "--webhook-url <url>", "description": "Google Chat webhook URL" }
},
{
"key": "useEnv",
"kind": "boolean",
"cli": { "flags": "--use-env", "description": "Use Google Chat environment credentials" }
}
]
}
},
"install": {
"npmSpec": "@openclaw/googlechat",
"defaultChoice": "npm",
"minHostVersion": ">=2026.4.10"
},
"compat": {
"pluginApi": ">=2026.7.2"
},
"build": {
"openclawVersion": "2026.7.2"
},
"release": {
"publishToClawHub": true,
"publishToNpm": true
}
}
}