forked from eth-infinitism/account-abstraction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "accountabstraction",
"version": "0.7.0",
"description": "ERC-4337 Account Abstraction Implementation",
"scripts": {
"clean": "rm -rf cache artifacts typechain typechain-types",
"compile": "hardhat compile",
"tsc": "tsc",
"runop": "hardhat run scripts/runop.ts",
"createAccount": "hardhat run scripts/createAccount.ts",
"fundAccount": "hardhat run scripts/fundAccount.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typechain/ethers-v5": "^10.1.0",
"@types/node": "^16.4.12",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@uniswap/v3-periphery": "^1.4.3",
"eslint": "^8.19.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"ethers": "^5.4.2",
"hardhat": "^2.17.2",
"ts-node": "^10.1.0",
"typechain": "^8.1.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"@typechain/hardhat": "^2.3.0",
"ethereumjs-util": "^7.1.0",
"typescript": "^4.3.5"
}
}