-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1019 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": "rubi-bots-ts",
"version": "1.0.0",
"description": "trading bots for Rubicon.Finance in TS",
"main": "src/index.ts",
"repository": "https://github.com/RubiconDeFi/rubi-bots-ts.git",
"author": "bghughes <[email protected]>",
"license": "MIT",
"dependencies": {
"@ethersproject/abi": "5.7",
"@indexed-finance/multicall": "^2.0.0",
"@rubicondefi/gladius-sdk": "^1.4.27",
"@types/node": "^22.5.3",
"@uniswap/token-lists": "^1.0.0-beta.34",
"dotenv": "^16.4.5",
"ethers": "5",
"node-kraken-api": "^2.2.2",
"pm2": "^5.4.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"devDependencies": {},
"scripts": {
"run:cexMarketMaking": "ts-node src/strategies/cexMarketMaking/index.ts",
"run:ammOutbid": "ts-node src/strategies/ammOutbid/index.ts",
"run:bondingCurve": "ts-node src/strategies/bondingCurve/index.ts",
"run:onchainAggregatorBid": "ts-node src/strategies/onchainAggregatorBid/index.ts"
}
}