UNPKG

@elizaos/plugin-zapper

Version:

ElizaOS plugin for Zapper protocol integration - portfolio tracking, DeFi analytics, and blockchain data across 50+ networks

95 lines (94 loc) 2.37 kB
{ "name": "@elizaos/plugin-zapper", "version": "1.2.9", "description": "ElizaOS plugin for Zapper protocol integration - portfolio tracking, DeFi analytics, and blockchain data across 50+ networks", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "author": "elizaOS Contributors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/elizaos/eliza.git" }, "keywords": [ "elizaos", "plugin", "zapper", "defi", "blockchain", "portfolio", "crypto", "ethereum", "polygon", "arbitrum", "optimism", "base", "nft", "token", "price" ], "files": [ "dist", "README.md", "LICENSE" ], "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } } }, "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": "bun test", "test:watch": "bun test --watch", "test:coverage": "bun test --coverage" }, "dependencies": { "@elizaos/core": "1.0.9", "@elizaos/plugin-anthropic": "^1.0.0-beta.54", "@elizaos/plugin-bootstrap": "^1.2.11-beta.0", "@elizaos/plugin-openai": "^1.0.0-beta.74", "@elizaos/plugin-openrouter": "^1.0.0-beta.55" }, "devDependencies": { "@types/bun": "latest", "@types/jest": "^29.5.0", "@types/node-fetch": "^2.6.12", "bun": "^1.2.15", "node-fetch": "^3.3.2", "prettier": "^3.0.0", "tsup": "8.3.5", "typescript": "^5.0.0" }, "publishConfig": { "access": "public" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "ZAPPER_API_KEY": { "type": "string", "description": "Zapper API key for accessing portfolio and blockchain data", "required": true, "sensitive": true }, "ZAPPER_API_URL": { "type": "string", "description": "Zapper GraphQL API endpoint", "required": false, "default": "https://public.zapper.xyz/graphql" } } } }