-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.87 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@hyperd-ai/plugin-hyperd",
"version": "0.1.1",
"type": "module",
"description": "ElizaOS plugin for hyperD — on-demand DeFi intelligence (wallet risk, token security, liquidation alerts, P&L, DEX quotes) paid per-call in USDC on Base via the x402 protocol. No API key, no signup.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"author": "Thomas Potter <hi@hyperd.ai>",
"homepage": "https://hyperd.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperd-ai/plugin-hyperd.git"
},
"bugs": {
"url": "https://github.com/hyperd-ai/plugin-hyperd/issues"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run typecheck && npm run test && npm run build"
},
"dependencies": {
"@x402/fetch": "^2.11.0",
"@x402/evm": "^2.11.0"
},
"peerDependencies": {
"@elizaos/core": ">=1.7.0",
"viem": "^2.21.0"
},
"devDependencies": {
"@elizaos/core": "^1.7.2",
"@types/node": "^22.10.0",
"typescript": "^5.6.3",
"viem": "^2.39.3",
"vitest": "^2.1.0"
},
"publishConfig": {
"access": "public"
},
"elizaos": {
"plugin": {
"displayName": "hyperD",
"category": "data",
"capabilities": ["defi-data", "wallet-risk", "x402-buyer"]
}
},
"packageType": "plugin",
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"HYPERD_API_BASE": {
"type": "string",
"required": false,
"default": "https://api.hyperd.ai",
"description": "Base URL for the hyperD API. Defaults to production."
},
"HYPERD_BUYER_PRIVATE_KEY": {
"type": "string",
"required": true,
"sensitive": true,
"description": "EVM private key (0x-prefixed, 32-byte hex) holding USDC on Base for x402 micropayments. The plugin signs EIP-3009 transfer authorizations with this key. Costs are typically $0.005–$0.20 per call."
},
"HYPERD_MAX_USDC_PER_CALL": {
"type": "number",
"required": false,
"default": 0.25,
"description": "Hard cap on USDC payment authorized per call. Refuses calls priced above this. Default $0.25."
}
}
},
"keywords": [
"elizaos",
"elizaos-plugin",
"plugin",
"hyperd",
"defi",
"x402",
"x402-buyer",
"wallet-risk",
"token-security",
"liquidation",
"pnl",
"dex-quote",
"usdc",
"base"
]
}