-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 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
{
"name": "lp-evil-panda",
"version": "0.1.5",
"description": "Autonomous Meteora LP bot implementing the Evil Panda strategy via LP Agent API",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"scan:once": "tsx src/scan-once.ts",
"monitor:once": "tsx src/monitor-once.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": ["meteora", "dlmm", "lp", "solana", "defi", "bot"],
"license": "MIT",
"openclaw": {
"extensions": [
"./dist/openclaw-plugin.js"
],
"compat": {
"pluginApi": ">=2026.3.23-2",
"minGatewayVersion": "2026.3.23-2"
},
"build": {
"openclawVersion": "2026.3.23-2",
"pluginSdkVersion": "2026.3.23-2"
}
},
"dependencies": {
"@solana/web3.js": "^1.98.0",
"bs58": "^6.0.0",
"dotenv": "^16.4.7",
"technicalindicators": "^3.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"openclaw": "^2026.3.28",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}