-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "ts-bia",
"version": "1.0.0",
"description": "Solana trading bot using Raydium LP V4",
"main": "dist/app.js",
"scripts": {
"start": "tsc --resolveJsonModule && node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Jack Kasbeer (satoshigoat)",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"typescript": "^5.3.3"
},
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@native-to-anchor/buffer-layout": "^0.1.0",
"@openbook-dex/openbook": "^0.0.9",
"@raydium-io/raydium-sdk": "^1.3.1-beta.47",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@solana/buffer-layout": "4.0.0",
"@solana/spl-token": "^0.4.0",
"@solana/web3.js": "^1.90.0",
"bn.js": "^5.2.1",
"express": "^4.18.2",
"httpx": "^2.3.1",
"jito-ts": "^3.0.1",
"math.js": "^1.1.46",
"rollup-plugin-terser": "^7.0.2",
"tweetnacl": "^1.0.3",
"ws": "^8.16.0"
},
"overrides": {
"@solana/buffer-layout": "4.0.0"
}
}