-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
93 lines (93 loc) · 3.05 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@biconomy/account-contracts",
"version": "2.0.1",
"description": "Smart Contract Wallet (SCW) contracts for Biconomy SDK. Enables Account Abstraction, Smart Account, ERC4337, and ERC6900 functionalities.",
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"clean": "npx hardhat clean",
"build": "npm run clean && npx hardhat compile",
"test": "npx hardhat test",
"bundler-test": "./scripts/bundler-tests.sh",
"lint:ts": "npx eslint 'test/**/*.ts' 'scripts/**/*.ts'",
"lint:ts-fix": "npx eslint 'test/**/*.ts' 'scripts/**/*.ts' --fix",
"lint:sol": "npx solhint 'contracts/**/*.sol'",
"lint:sol-fix": "npx prettier 'contracts/**/*.sol' --write && npx solhint 'contracts/**/*.sol' --fix",
"lint": "npm run lint:ts && npm run lint:sol",
"lint:fix": "npm run lint:ts-fix && npm run lint:sol-fix",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"coverage": "COVERAGE=1 DISABLE_VIA_IR=true hardhat coverage",
"prepare": "husky install"
},
"keywords": [
"Account Abstraction",
"Smart Account",
"ERC4337",
"ERC6900",
"ERC-4337",
"ERC-6900",
"Biconomy",
"@bcnmy",
"Smart Wallet"
],
"author": "Biconomy",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.9.3",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-string": "^1.4.2",
"@types/mocha": "^9.1.1",
"@types/node": "^12.20.54",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
"dotenv": "^16.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-security": "^1.7.1",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.2",
"hardhat": "^2.9.7",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-deploy": "^0.11.26",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.3",
"merkletreejs": "^0.3.10",
"pinst": "^3.0.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.1.2",
"solc": "^0.8.15",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.8.1",
"typechain": "^8.3.1",
"typescript": "^4.7.3",
"web3": "^1.7.4"
},
"dependencies": {
"@account-abstraction/contracts": "^0.6.0",
"@ethersproject/abstract-signer": "^5.6.2",
"@ethersproject/constants": "^5.6.1",
"axios": "^1.4.0",
"ethereumjs-util": "^7.1.0"
}
}