-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 910 Bytes
/
package.json
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
{
"name": "swap_quote",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"format": "bun prettier ./src --write",
"test": "echo \"Error: no test specified\" && exit 1",
"create-dynamic-amm-pool": "bun run src/create_pool.ts --config ./config/create_dynamic_amm_pool.json",
"create-dlmm-pool": "bun run src/create_pool.ts --config ./config/create_dlmm_pool.json"
},
"dependencies": {
"@coral-xyz/anchor": "^0.28.0",
"@mercurial-finance/dynamic-amm-sdk": "^1.1.19",
"@meteora-ag/alpha-vault": "^1.1.6",
"@meteora-ag/dlmm": "^1.3.3",
"@solana/spl-token": "^0.4.9",
"@solana/spl-token-registry": "^0.2.4574",
"@solana/web3.js": "^1.95.8",
"ajv": "^8.17.1",
"bn.js": "^5.2.1",
"decimal.js": "^10.4.3"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bun": "^1.1.14",
"prettier": "3.4.2"
}
}