forked from jito-labs/mev-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.86 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "mev-bot",
"version": "1.0.0",
"type": "module",
"author": "Jito Labs",
"license": "Apache-2.0",
"engines": {
"node": ">= 16.19 <17"
},
"scripts": {
"prestart": "$npm_execpath run build",
"start": "node --max-old-space-size=16384 --max-semi-space-size=256 --trace-warnings build/src/bot.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "eslint . --ext .ts --ext .mts",
"prettier": "prettier --config .prettierrc --write ."
},
"devDependencies": {
"@types/convict": "^6.1.1",
"@types/node": "16",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"pino-pretty": "^9.4.0",
"prettier": "^2.8.4",
"rimraf": "^4.1.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@coral-xyz/anchor": "^0.27.0",
"@datastructures-js/priority-queue": "^6.2.0",
"@datastructures-js/queue": "^4.2.3",
"@jup-ag/common": "^4.0.0-beta.16",
"@jup-ag/core": "^4.0.0-beta.16",
"@orca-so/whirlpools-sdk": "^0.8.2",
"@project-serum/serum": "^0.13.65",
"@raydium-io/raydium-sdk": "^1.3.0-beta.2",
"@solana/buffer-layout": "^4.0.1",
"@solana/buffer-layout-utils": "^0.2.0",
"@solana/spl-token-3": "npm:@solana/spl-token@~0.3",
"@solana/web3.js": "^1.73.3",
"@solendprotocol/solend-sdk": "^0.6.16",
"agentkeepalive": "^4.3.0",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"convict": "^6.2.4",
"csv-stringify": "^6.3.2",
"default-import": "^1.1.5",
"dotenv": "^16.0.3",
"jito-ts": "https://github.com/futurekarol/jito-ts.git#expose_grpc_settings",
"jsbi": "^4.3.0",
"node-fetch": "^3.3.0",
"pino": "^8.11.0"
}
}