-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.09 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
{
"name": "@elizaos/plugin-dexpaprika",
"version": "0.1.0",
"description": "DeFi analytics plugin using DexPaprika API for ElizaOS",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"elizaos-plugin",
"defi",
"crypto",
"blockchain",
"dexpaprika"
],
"author": "DexPaprika Team",
"license": "MIT",
"dependencies": {
"@elizaos/core": "^0.25.9",
"axios": "^1.6.0",
"zod": "^3.22.4"
},
"devDependencies": {
"tsup": "^8.4.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"agentConfig": {
"pluginType": "elizaos:client:1.0.0",
"pluginParameters": {
"DEXPAPRIKA_API_URL": {
"type": "string",
"description": "Base URL for the DexPaprika API",
"default": "https://api.dexpaprika.com"
},
"DEXPAPRIKA_API_KEY": {
"type": "string",
"description": "API key for DexPaprika API (optional)",
"optional": true
}
}
}
}