{
  "name": "@livekit/agents-plugin-google",
  "version": "1.4.9",
  "description": "Google Gemini plugin for LiveKit Node Agents",
  "main": "dist/index.js",
  "require": "dist/index.cjs",
  "types": "dist/index.d.ts",
  "exports": {
    "import": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "require": {
      "types": "./dist/index.d.cts",
      "default": "./dist/index.cjs"
    }
  },
  "author": "LiveKit",
  "type": "module",
  "repository": "git@github.com:livekit/agents-js.git",
  "license": "Apache-2.0",
  "files": [
    "dist",
    "src",
    "README.md"
  ],
  "devDependencies": {
    "@livekit/rtc-node": "^0.13.29",
    "@microsoft/api-extractor": "^7.35.0",
    "tsup": "^8.3.5",
    "typescript": "^5.0.0",
    "@livekit/agents": "1.4.9",
    "@livekit/agents-plugin-openai": "1.4.9",
    "@livekit/agents-plugins-test": "1.4.9"
  },
  "dependencies": {
    "@google/genai": "^1.52.0",
    "google-auth-library": "^10.6.2",
    "@livekit/mutex": "^1.1.1",
    "@types/json-schema": "^7.0.15",
    "json-schema": "^0.4.0",
    "openai": "^6.8.1"
  },
  "peerDependencies": {
    "@livekit/rtc-node": "^0.13.29",
    "@livekit/agents": "1.4.9"
  },
  "scripts": {
    "build": "tsup --onSuccess \"pnpm build:types\"",
    "build:types": "tsc --declaration --emitDeclarationOnly && node ../../scripts/copyDeclarationOutput.js",
    "clean": "rm -rf dist",
    "clean:build": "pnpm clean && pnpm build",
    "lint": "eslint -f unix \"src/**/*.{ts,js}\"",
    "api:check": "api-extractor run --typescript-compiler-folder ../../node_modules/typescript",
    "api:update": "api-extractor run --local --typescript-compiler-folder ../../node_modules/typescript --verbose"
  }
}