{ "name": "@elizaos/plugin-google-chat", "version": "2.0.3-beta.7", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "eliza-source": { "types": "./src/index.ts", "import": "./src/index.ts", "default": "./src/index.ts" }, "import": "./dist/index.js", "default": "./dist/index.js" }, "./*.css": "./dist/*.css", "./*": { "types": "./dist/*.d.ts", "eliza-source": { "types": "./src/*.ts", "import": "./src/*.ts", "default": "./src/*.ts" }, "import": "./dist/*.js", "default": "./dist/*.js" } }, "files": [ "registry-entry.json", "dist", "auto-enable.ts" ], "elizaos": { "plugin": { "autoEnableModule": "./auto-enable.ts", "capabilities": [ "messaging" ] } }, "publishConfig": { "access": "public" }, "scripts": { "build": "bun run build.ts", "test": "vitest run", "test:watch": "vitest --config vitest.config.ts", "lint": "bunx @biomejs/biome check --write --unsafe .", "lint:check": "bunx @biomejs/biome check .", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format .", "typecheck": "tsgo --noEmit -p tsconfig.json" }, "dependencies": { "@elizaos/core": "workspace:*", "google-auth-library": "^10.0.0", "zod": "^4.4.3" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@types/node": "^22.19.17", "typescript": "^6.0.3", "vitest": "^4.0.0" }, "eliza": { "platforms": [ "node" ], "runtime": "node" }, "agentConfig": { "pluginParameters": { "GOOGLE_CHAT_SERVICE_ACCOUNT": { "type": "string", "description": "Service account credentials", "required": false, "sensitive": false }, "GOOGLE_CHAT_SERVICE_ACCOUNT_FILE": { "type": "string", "description": "Service account credentials", "required": false, "sensitive": false }, "GOOGLE_APPLICATION_CREDENTIALS": { "type": "string", "description": "Credentials file path or JSON", "required": false, "sensitive": true }, "GOOGLE_CHAT_AUDIENCE_TYPE": { "type": "string", "description": "Audience/auth scope", "required": false, "sensitive": false }, "GOOGLE_CHAT_AUDIENCE": { "type": "string", "description": "Audience/auth scope", "required": false, "sensitive": false }, "GOOGLE_CHAT_WEBHOOK_PATH": { "type": "string", "description": "Webhook path", "required": false, "sensitive": false }, "GOOGLE_CHAT_SPACES": { "type": "string", "description": "Comma-separated space/room list", "required": false, "sensitive": false }, "GOOGLE_CHAT_REQUIRE_MENTION": { "type": "boolean", "description": "Only respond when mentioned", "required": false, "sensitive": false }, "GOOGLE_CHAT_ENABLED": { "type": "boolean", "description": "Enable or disable this feature", "required": false, "sensitive": false }, "GOOGLE_CHAT_BOT_USER": { "type": "string", "description": "Bot user identifier", "required": false, "sensitive": false } } } }