-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
43 lines (43 loc) · 1.49 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
{
"name": "@chainify/evm",
"version": "3.0.0",
"description": "",
"author": "Liquality <[email protected]>",
"homepage": "",
"license": "ISC",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "cp -R ../../node_modules/@chainify/evm-contracts/artifacts . && hardhat --config ./hardhat.config.ts typechain && tsc",
"clean": "rm -rf node_modules .turbo dist ./lib/typechain cache artifacts"
},
"dependencies": {
"@chainify/client": "workspace:*",
"@chainify/errors": "workspace:*",
"@chainify/logger": "workspace:*",
"@chainify/types": "workspace:*",
"@chainify/utils": "workspace:*",
"@eth-optimism/sdk": "1.1.5",
"@ethersproject/abi": "5.7.0",
"@ethersproject/abstract-provider": "5.7.0",
"@ethersproject/abstract-signer": "5.7.0",
"@ethersproject/constants": "5.7.0",
"@ethersproject/contracts": "5.7.0",
"@ethersproject/providers": "5.7.0",
"@ethersproject/solidity": "5.7.0",
"@ethersproject/transactions": "5.7.0",
"@ethersproject/wallet": "5.7.0",
"@liquality/fee-suggestions": "2.0.2",
"@metamask/eth-sig-util": "4.0.1",
"ethers": "5.7.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@typechain/hardhat": "^4.0.0",
"hardhat": "^2.8.3"
}
}