{ "name": "@elizaos/plugin-groq", "version": "2.0.3-beta.7", "type": "module", "main": "dist/node/index.node.js", "module": "dist/node/index.node.js", "types": "dist/index.d.ts", "browser": "dist/browser/index.browser.js", "repository": { "type": "git", "url": "git+https://github.com/elizaos-plugins/plugin-groq.git" }, "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "browser": { "types": "./dist/browser/index.d.ts", "import": "./dist/browser/index.browser.js", "default": "./dist/browser/index.browser.js" }, "node": { "types": "./dist/node/index.d.ts", "import": "./dist/node/index.node.js", "default": "./dist/node/index.node.js" }, "default": "./dist/node/index.node.js" }, "./*.css": "./dist/*.css", "./*": { "types": "./dist/*.d.ts", "import": "./dist/*.js", "default": "./dist/*.js" } }, "sideEffects": false, "files": [ "registry-entry.json", "dist", "auto-enable.ts" ], "elizaos": { "plugin": { "autoEnableModule": "./auto-enable.ts", "capabilities": [ "text-large", "text-small", "tool-use", "text-to-speech" ] } }, "dependencies": { "@ai-sdk/groq": "^3.0.4", "@elizaos/core": "workspace:*", "ai": "^6.0.0" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@elizaos/test-harness": "workspace:*", "@types/bun": "^1.3.10", "@types/node": "^25.0.3", "typescript": "^6.0.3", "vitest": "^4.1.4" }, "scripts": { "dev": "bun run build.ts --watch", "typecheck": "tsgo --noEmit -p tsconfig.json", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist", "format": "bunx @biomejs/biome format --write .", "test": "vitest run --config vitest.config.ts", "test:harness": "bunx vitest run --config vitest.harness.config.ts", "lint": "bunx @biomejs/biome check --write --unsafe .", "lint:check": "bunx @biomejs/biome check .", "build": "bun run build.ts", "build:ts": "bun run build.ts", "format:check": "bunx @biomejs/biome format ." }, "publishConfig": { "access": "public" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "GROQ_API_KEY": { "type": "string", "description": "Groq API key", "required": true, "sensitive": true }, "GROQ_BASE_URL": { "type": "string", "description": "Custom API base URL", "required": false, "default": "https://api.groq.com/openai/v1" }, "GROQ_SMALL_MODEL": { "type": "string", "description": "Small model name", "required": false, "default": "openai/gpt-oss-120b" }, "GROQ_LARGE_MODEL": { "type": "string", "description": "Large model name", "required": false, "default": "openai/gpt-oss-120b" }, "GROQ_TTS_MODEL": { "type": "string", "description": "TTS model name", "required": false, "default": "canopylabs/orpheus-v1-english" }, "GROQ_TTS_VOICE": { "type": "string", "description": "TTS voice name", "required": false, "default": "troy" }, "GROQ_TTS_RESPONSE_FORMAT": { "type": "string", "description": "TTS response format", "required": false, "default": "wav" } } }, "eliza": { "platforms": [ "browser", "node" ], "runtime": "both", "platformDetails": { "browser": "Browser-compatible build available via exports.browser", "node": "Node.js build available via exports.node" } } }