forked from flashbots/mev-share-client-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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
{
"name": "@flashbots/mev-share-client",
"version": "0.7.10",
"description": "MEV-Share client library for Flashbots mev-share.",
"main": "build/index.js",
"repository": "https://github.com/flashbots/mev-share-client-ts",
"author": "zeroXbrock",
"license": "MIT",
"dependencies": {
"async-mutex": "^0.4.0",
"axios": "^1.3.4",
"eventsource": "^2.0.2"
},
"devDependencies": {
"@types/eventsource": "^1.1.11",
"@types/node": "^18.14.4",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-plugin-tsdoc": "^0.2.17",
"ethers": "^6.5.1",
"release-it": "^15.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"ethers": "^6.5.1"
},
"scripts": {
"build": "tsc",
"test": "echo \"no test specified\" && exit 0",
"lint": "eslint src/*.ts src/**/*.ts",
"example.backrun": "ts-node src/examples/sendBackrunBundle.ts",
"example.composableBundle": "ts-node src/examples/sendComposableBundle.ts",
"example.history": "ts-node src/examples/historicalStreamData.ts",
"example.tx": "ts-node src/examples/sendTx.ts"
}
}