UNPKG

@elizaos/plugin-bedrock

Version:

Amazon Bedrock plugin for ElizaOS - integrates Claude, Titan, and other foundation models

102 lines (101 loc) 2.54 kB
{ "name": "@elizaos/plugin-bedrock", "description": "Amazon Bedrock plugin for ElizaOS - integrates Claude, Titan, and other foundation models", "version": "1.0.1", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "packageType": "plugin", "platform": "node", "license": "UNLICENSED", "author": "0xbbjoker", "keywords": [ "plugin", "elizaos", "bedrock", "aws", "claude", "anthropic", "titan", "ai", "llm" ], "repository": { "type": "git", "url": "git+https://github.com/elizaos-plugins/plugin-bedrock.git" }, "homepage": "https://elizaos.ai", "bugs": { "url": "https://github.com/elizaos-plugins/plugin-bedrock/issues" }, "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } } }, "files": [ "dist", "README.md", ".npmignore", "package.json", "tsup.config.ts" ], "dependencies": { "@aws-sdk/client-bedrock-runtime": "^3.830.0", "@aws-sdk/credential-providers": "^3.830.0", "@elizaos/core": "latest", "zod": "3.23.8" }, "peerDependencies": {}, "devDependencies": { "@elizaos/cli": "latest", "dotenv": "16.4.5", "prettier": "3.5.3", "tsup": "8.5.0", "typescript": "5.8.2", "vitest": "3.1.4" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "lint": "prettier --write ./src", "clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo", "format": "prettier --write ./src", "format:check": "prettier --check ./src", "test": "vitest run", "test:watch": "vitest" }, "publishConfig": { "access": "public" }, "resolutions": { "zod": "3.23.8" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "AWS_REGION": { "type": "string", "description": "AWS region for Bedrock services (e.g., us-east-1)" }, "AWS_ACCESS_KEY_ID": { "type": "string", "description": "AWS access key ID for authentication" }, "AWS_SECRET_ACCESS_KEY": { "type": "string", "description": "AWS secret access key for authentication" }, "AWS_PROFILE": { "type": "string", "description": "AWS profile name (optional, alternative to explicit credentials)" } } }, "gitHead": "d5bd5c43bfebeb7ac02f9e029f924cb6cd5c2ec7" }