-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 879 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 879 Bytes
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
{
"name": "@arcadia-finance/plugin-arcadia",
"version": "0.1.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Arcadia Finance: manage concentrated liquidity on Uniswap and Aerodrome with automated rebalancing and yield optimization on Base.",
"license": "MIT",
"files": ["dist"],
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {}
},
"dependencies": {
"@elizaos/plugin-evm": "next",
"axios": "^1.7.0",
"viem": "^2.21.0"
},
"peerDependencies": {
"@elizaos/core": "next"
},
"devDependencies": {
"@elizaos/core": "next",
"tsup": "^8.0.0",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"typecheck": "tsc --noEmit"
}
}