-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 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
{
"name": "@nftchance/mev",
"author": "nftchance",
"license": "MIT",
"version": "0.0.16",
"description": "A MEV bot engine designed specifically for individuals that need high data stream throughput paired with the ability to craft new strategies in as few lines of code possible.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mev": "dist/cli/cli.js"
},
"files": [
"src",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"lint": "tsc --noEmit",
"premev": "npx build",
"mev": "node dist/cli/cli.js",
"prereferences": "npx build",
"references": "node dist/lib/references.js",
"test": "jest --watchAll=false --detectOpenHandles"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@changesets/cli": "^2.27.1",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/cli-progress": "^3.11.3",
"@types/fs-extra": "^11.0.2",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.7",
"@types/node": "^20.8.4",
"jest": "^29.7.0",
"tree-kill": "^1.2.2",
"tsup": "^8.0.2"
},
"dependencies": {
"@flashbots/ethers-provider-bundle": "^0.6.2",
"@opensea/stream-js": "^0.1.2",
"axios": "^1.5.1",
"bundle-require": "^4.0.2",
"commander": "^12.0.0",
"dedent": "^1.5.1",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"find-up": "^7.0.0",
"fs-extra": "^11.1.1",
"opensea-js": "^6.1.11",
"pathe": "^1.1.1",
"picocolors": "^1.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}