{ "name": "@elizaos/plugin-google", "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" ], "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" }, "dependencies": { "@elizaos/core": "workspace:*", "google-auth-library": "^10.0.0", "googleapis": "^169.0.0", "zod": "^4.4.3" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@types/node": "^25.6.0", "typescript": "^6.0.3", "vitest": "^4.0.0" }, "eliza": { "platforms": [ "node" ], "runtime": "node" }, "agentConfig": { "pluginParameters": { "GOOGLE_CLIENT_ID": { "type": "string", "description": "Google OAuth client ID", "required": false, "sensitive": false }, "GOOGLE_CLIENT_SECRET": { "type": "string", "description": "Google OAuth client secret", "required": false, "sensitive": true }, "GOOGLE_REDIRECT_URI": { "type": "string", "description": "Google OAuth redirect URI", "required": false, "sensitive": false } } } }