forked from flashbots/ethers-provider-flashbots-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 962 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
34
35
36
37
{
"name": "@flashbots/ethers-provider-bundle",
"version": "0.5.0",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/flashbots/ethers-provider-flashbots-bundle.git"
},
"scripts": {
"demo": "npx ts-node --project tsconfig.json src/demo.ts",
"build": "npx tsc",
"clean": "rm -rf build/",
"prepare": "npm run clean && npm run build",
"lint": "npx eslint src"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"ethers": "^5.4.2",
"prettier": "^2.2.1"
},
"peerDependencies": {
"ethers": "^5.4.2"
},
"dependencies": {
"ts-node": "^9.1.0",
"typescript": "^4.1.2"
}
}