forked from yunus-0x/meridian
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "dlmm-agent",
"version": "1.0.0",
"type": "module",
"description": "Autonomous DLMM LP agent for Meteora on Solana",
"main": "index.js",
"scripts": {
"setup": "node setup.js",
"start": "node index.js",
"dev": "DRY_RUN=true node index.js",
"dev:web": "cd web && npm run dev",
"build:web": "cd web && npm run build",
"test:screen": "node test/test-screening.js",
"test:agent": "DRY_RUN=true node test/test-agent.js",
"test:runtime": "node --test test/test-runtime-fixes.js",
"lint": "eslint .",
"postinstall": "node scripts/patch-anchor.js"
},
"dependencies": {
"@meteora-ag/dlmm": "latest",
"@solana/spl-token": "^0.3.11",
"@solana/web3.js": "^1.95.0",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"node-cron": "^3.0.3",
"nuggets": "file:./packages/nuggets",
"openai": "^4.73.0",
"ws": "^8.19.0"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.2.0",
"globals": "^17.4.0"
}
}