UNPKG

@elizaos/plugin-coinmarketcap

Version:

CoinMarketCap plugin for ElizaOS - Get real-time cryptocurrency prices

75 lines (74 loc) 1.7 kB
{ "name": "@elizaos/plugin-coinmarketcap", "version": "1.0.1", "description": "CoinMarketCap plugin for ElizaOS - Get real-time cryptocurrency prices", "main": "dist/index.js", "module": "dist/index.js", "type": "module", "types": "dist/index.d.ts", "files": [ "dist" ], "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } } }, "author": "elizaOS Contributors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/elizaos/v1-registry.git" }, "keywords": [ "elizaos", "plugin", "coinmarketcap", "cryptocurrency", "crypto", "price", "bitcoin", "ethereum" ], "dependencies": { "@elizaos/core": "latest", "axios": "^1.6.7", "zod": "^3.22.4" }, "devDependencies": { "@types/bun": "latest", "@types/node": "^20.11.13", "bun": "latest", "prettier": "^3.2.5", "tsup": "^8.3.5", "typescript": "^5.3.3" }, "scripts": { "build": "tsup --format esm --dts", "dev": "tsup --format esm --dts --watch", "clean": "rm -rf dist", "format": "prettier --write .", "check:format": "prettier --check .", "test": "bun test", "test:watch": "bun test --watch", "test:coverage": "bun test --coverage" }, "publishConfig": { "access": "public" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "COINMARKETCAP_API_KEY": { "type": "string", "description": "API key for CoinMarketCap Pro API", "required": true, "sensitive": true } } } }