-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.59 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
{
"name": "@openmev/ethers-provider",
"version": "1.3.1",
"description": "OpenMEV Web3 Provider for EthersJS, Includes multiple RPC Providers for Private RPC Transactions",
"main": "build/index.js",
"types": "build/index.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/manifoldfinance/ethers-provider.git"
},
"scripts": {
"build": "npx tsc -b",
"format": "npx prettier --config .prettierrc.json --write src/",
"debug": "NODE_ENV=test npx jest -u",
"lint": "npx eslint src --fix"
},
"author": "SEE CONTRIBUTORS",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.17.18",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"ethers": "^5.4.7",
"jest": "^27.2.1",
"prettier": "^2.2.1",
"ts-jest": "^27.0.5",
"ts-node": "^9.1.0",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.1",
"typedoc": "^0.22.8",
"typescript": "^4.4.4"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.4.1",
"@ethersproject/bignumber": "^5.4.2",
"@ethersproject/hash": "^5.4.0",
"@ethersproject/keccak256": "^5.4.0",
"@ethersproject/networks": "^5.4.2",
"@ethersproject/providers": "^5.4.5",
"@ethersproject/rlp": "^5.4.0",
"@ethersproject/strings": "^5.4.0",
"@ethersproject/transactions": "^5.4.0",
"@ethersproject/web": "^5.4.0",
"eciesjs": "^0.3.12"
}
}