forked from NotoriousPyro/solana-exchange-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.1 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "sexbot",
"version": "0.1",
"author": {
"name": "NotoriousPyro",
"email": "[email protected]"
},
"license": "",
"repository": {
"type": "git",
"url": "https://github.com/SexOnSol/sexbot.git"
},
"engines": {
"node": ">=20"
},
"types": "./dist/index.d.ts",
"scripts": {
"debug": "npx ts-node ./src/index.ts",
"trade": "node ./dist/index.js",
"build": "tsup",
"test": "jest"
},
"files": [
"./src/**/*.ts"
],
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@jup-ag/api": "^6.0.24",
"@jup-ag/instruction-parser": "^6.1.3",
"@mercurial-finance/dynamic-amm-sdk": "^0.4.19",
"@sexonsol/jupiter-swap-cache": "^1.0.1",
"@solana/spl-token": "^0.4.6",
"@solana/web3.js": "^1.91.8",
"bfj": "^8.0.0",
"big-integer": "^1.6.52",
"bignumber.js": "^9.1.2",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"fetch-retry": "^6.0.0",
"jito-ts": "^4.1.1",
"keypress": "^0.2.1",
"limiter": "^2.1.0",
"lmdb": "^3.0.6",
"lodash": "^4.17.21",
"lru-cache": "^11.0.1",
"node-fetch": "^2.7.0",
"nodemon": "^3.1.0",
"open": "^8.4.0",
"promise-retry": "^2.0.1",
"ts-node": "^10.9.2",
"yaml": "^2.3.4"
},
"ava": {
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"xo": {
"extends": "xo-react",
"rules": {
"react/prop-types": "off"
}
},
"devDependencies": {
"@ava/babel": "^2.0.0",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.23.3",
"@babel/register": "^7.17.7",
"@types/bn.js": "^5.1.5",
"@types/bs58": "^4.0.4",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/node-fetch": "^2.6.11",
"@types/object-hash": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"resolutions": {
"@solana/buffer-layout": "4.0.1"
}
}