|
| 1 | +{ |
| 2 | + "name": "@livekit/agents-plugin-google", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "Google plugin for LiveKit Agents for Node.js", |
| 5 | + "main": "dist/index.js", |
| 6 | + "require": "dist/index.cjs", |
| 7 | + "types": "dist/index.d.ts", |
| 8 | + "exports": { |
| 9 | + "import": { |
| 10 | + "types": "./dist/index.d.ts", |
| 11 | + "default": "./dist/index.js" |
| 12 | + }, |
| 13 | + "require": { |
| 14 | + "types": "./dist/index.d.cts", |
| 15 | + "default": "./dist/index.cjs" |
| 16 | + } |
| 17 | + }, |
| 18 | + "author": "LiveKit", |
| 19 | + "type": "module", |
| 20 | + "repository": "git@github.com:livekit/agents-js.git", |
| 21 | + "license": "Apache-2.0", |
| 22 | + "files": [ |
| 23 | + "dist", |
| 24 | + "src", |
| 25 | + "README.md" |
| 26 | + ], |
| 27 | + "scripts": { |
| 28 | + "build": "tsup --onSuccess \"pnpm build:types\"", |
| 29 | + "build:types": "tsc --declaration --emitDeclarationOnly && node ../../scripts/copyDeclarationOutput.js", |
| 30 | + "clean": "rm -rf dist", |
| 31 | + "clean:build": "pnpm clean && pnpm build", |
| 32 | + "lint": "eslint -f unix \"src/**/*.{ts,js}\"", |
| 33 | + "api:check": "api-extractor run --typescript-compiler-folder ../../node_modules/typescript", |
| 34 | + "api:update": "api-extractor run --local --typescript-compiler-folder ../../node_modules/typescript --verbose" |
| 35 | + }, |
| 36 | + "devDependencies": { |
| 37 | + "@livekit/agents": "workspace:^x", |
| 38 | + "@livekit/agents-plugin-silero": "workspace:^x", |
| 39 | + "@livekit/agents-plugins-test": "workspace:^x", |
| 40 | + "@livekit/rtc-node": "^0.13.11", |
| 41 | + "@microsoft/api-extractor": "^7.35.0", |
| 42 | + "tsup": "^8.3.5", |
| 43 | + "typescript": "^5.0.0" |
| 44 | + }, |
| 45 | + "dependencies": { |
| 46 | + "@google-cloud/speech": "^7.1.0" |
| 47 | + }, |
| 48 | + "peerDependencies": { |
| 49 | + "@livekit/agents": "workspace:^x", |
| 50 | + "@livekit/rtc-node": "^0.13.11" |
| 51 | + } |
| 52 | +} |
0 commit comments