-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "mev-tx-ts",
"version": "0.1.0",
"main": "dist/index.js",
"repository": "https://github.com/blunt-instruments/MevWallet.ts",
"author": "James Prestwich",
"license": "Apache-2.0 OR MIT",
"private": true,
"scripts": {
"build": "tsc --build",
"prettier": "prettier --write ./src ./tests",
"lint": "eslint --fix ./src ./tests",
"test": "jest",
"typechain": "typechain --glob ./abis/*.abi.json --target ethers-v5 --input-dir ./abis/ --out-dir ./src/bindings --discriminate-types"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.14",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^29.3.1",
"prettier": "^2.4.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.7.0",
"@typechain/ethers-v5": "^10.2.0",
"ethers": "^5.7.2"
}
}