-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 2.5 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
{
"name": "biconomy-paymasters",
"description": "Account abstraction ERC4337 paymaster contracts",
"version": "1.0.0",
"author": {
"name": "Biconomy",
"url": "https://github.com/bcnmy"
},
"dependencies": {
"@openzeppelin/contracts": "5.1.0",
"accountabstraction": "https://github.com/eth-infinitism/account-abstraction#v0.7.0",
"nexus": "https://github.com/bcnmy/nexus",
"solady": "github:vectorized/solady#v0.0.271",
"@uniswap/v3-core": "https://github.com/Uniswap/v3-core#0.8",
"@uniswap/v3-periphery": "https://github.com/Uniswap/v3-periphery#0.8",
"@uniswap/swap-router-contracts": "https://github.com/Uniswap/swap-router-contracts#v1.3.0",
"@prb/test": "^0.6.4"
},
"devDependencies": {
"chai": "^4.3.7",
"ethers": "^6.11.1",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.1.1",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.7",
"ts-node": ">=10.9.2",
"typechain": "^8.3.2",
"typescript": ">=5.3.3"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity"
],
"private": true,
"scripts": {
"clean:forge": "forge clean",
"clean": "pnpm run clean:forge && rm -rf cache docs coverage storageLayout coverage.json",
"build:forge": "forge build",
"build": "pnpm run build:forge",
"test:forge": "forge test",
"test": "pnpm run test:forge",
"test:gas:forge": "forge test --gas-report",
"test:gas": "pnpm test:gas:forge",
"coverage:forge": "forge coverage --ir-minimum --gas-limit 50000000 --gas-price 1000000000",
"coverage": "pnpm run coverage:forge",
"coverage:report": "forge coverage --ir-minimum --gas-limit 50000000 --gas-price 1000000000 --report lcov && genhtml --ignore-errors inconsistent lcov.info --branch-coverage --output-dir coverage/foundry && mv lcov.info coverage/foundry",
"deploy:forge": "forge script scripts/solidity/Deploy.s.sol --broadcast --rpc-url http://localhost:8545",
"lint:sol": "pnpm solhint 'contracts/**/*.sol'",
"format:check": "forge fmt --check",
"lint": "pnpm run lint:sol && pnpm run format:check",
"lint:ts": "pnpm prettier --check 'test/**/*.ts' 'scripts/**/*.ts'",
"lint:ts-fix": "pnpm prettier --write 'test/**/*.ts' 'scripts/**/*.ts'",
"lint:sol-fix": "pnpm prettier --write 'contracts/**/*.sol' && pnpm solhint 'contracts/**/*.sol' --fix --noPrompt && forge fmt",
"lint:fix": "pnpm run lint:sol-fix && pnpm run lint:ts-fix"
}
}