-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.75 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.75 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
{
"name": "@elizaos/plugin-sperax",
"version": "1.0.0",
"description": "Sperax DeFi plugin for ElizaOS - USDs stablecoin, SPA governance, and yield farming on Arbitrum",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsup src/index.ts --format esm --dts --watch",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "elizaos test --type e2e"
},
"keywords": [
"elizaos",
"plugin",
"sperax",
"usds",
"spa",
"stablecoin",
"defi",
"arbitrum",
"yield",
"web3"
],
"author": "Sperax Community",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elizaos-plugins/plugin-sperax"
},
"dependencies": {
"viem": "^2.21.0",
"zod": "^3.23.0"
},
"peerDependencies": {
"@elizaos/core": "^1.0.0"
},
"devDependencies": {
"@elizaos/core": "^1.0.0",
"@types/node": "^20.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^1.6.0"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"ARBITRUM_RPC_URL": {
"type": "string",
"description": "Arbitrum One RPC endpoint URL",
"required": false,
"default": "https://arb1.arbitrum.io/rpc"
},
"SPERAX_PRIVATE_KEY": {
"type": "string",
"description": "Private key for signing Sperax transactions (optional, for write operations)",
"required": false,
"secret": true
}
}
}
}