UNPKG

@elizaos/plugin-goplus

Version:

GoPlus security plugin for ElizaOS - Provides blockchain security checks via GoPlus API

75 lines (74 loc) 1.76 kB
{ "name": "@elizaos/plugin-goplus", "version": "1.0.2", "description": "GoPlus security plugin for ElizaOS - Provides blockchain security checks via GoPlus API", "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/elizaos-plugins" }, "keywords": [ "elizaos", "plugin", "goplus", "security", "blockchain", "token-security", "nft-security", "smart-contract" ], "dependencies": { "@elizaos/core": "1.0.9", "ws": "^8.18.0" }, "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" }, "devDependencies": { "@types/ws": "^8.5.13", "tsup": "8.3.5", "prettier": "^3.0.0", "bun": "^1.2.15", "@types/bun": "latest", "typescript": "^5.0.0" }, "publishConfig": { "access": "public" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "GOPLUS_API_KEY": { "type": "string", "description": "API key for GoPlus security service", "required": true, "sensitive": true } } } }