-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
33 lines (33 loc) · 949 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
31
32
33
{
"name": "kryptonite",
"version": "0.2.2",
"description": "Automated crypto swapping bot, written in Node.js. Supports multiple protocols like Uniswap, Curve, SushiSwap, Balancer, etc using 1inch AggregatorV4 router",
"main": "dist/index.js",
"scripts": {
"server": "node index.js",
"start": "npm run tsc && node dist/index.js",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pravinba9495/kryptonite.git"
},
"keywords": [],
"author": "Praveen Ravichandran <me@pravinba9495.dev>",
"license": "ISC",
"bugs": {
"url": "https://github.com/pravinba9495/kryptonite/issues"
},
"homepage": "https://github.com/pravinba9495/kryptonite#readme",
"dependencies": {
"axios": "^0.25.0",
"is-online": "^9.0.1",
"ngrok": "^4.3.0",
"redis": "^4.0.2",
"web3": "^1.8.1"
},
"devDependencies": {
"@types/node": "^17.0.10",
"typescript": "^4.5.4"
}
}