-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
79 lines (79 loc) · 2.52 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
{
"name": "@safe-global/safe-4337",
"version": "0.3.0-1",
"description": "Safe Module for ERC-4337 support",
"homepage": "https://github.com/safe-global/safe-modules/tree/main/modules/4337",
"license": "LGPL-3.0-only",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"contracts",
"dist",
"build"
],
"scripts": {
"build": "pnpm run build:sol && npm run build:ts",
"build:sol": "rimraf build typechain-types && hardhat compile",
"build:ts": "rimraf dist && tsc",
"test": "hardhat test --deploy-fixture",
"test:4337": "4337-local-bundler-test",
"test:4337:upstream": "USE_UPSTREAM_BUNDLER=1 4337-local-bundler-test",
"test:all": "pnpm run test && npm run test:4337",
"coverage": "hardhat coverage",
"codesize": "hardhat codesize",
"benchmark": "pnpm run test test/gas/*.ts",
"deploy-all": "hardhat deploy-contracts --network",
"deploy": "hardhat deploy --network",
"deploy-custom": "rm -rf deployments/custom && npm run deploy custom",
"lint": "pnpm run lint:sol && npm run lint:ts",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:ts": "eslint ./src && eslint ./test",
"lint:fix": "eslint ./src --fix && eslint ./test --fix",
"fmt": "prettier --write .",
"fmt:check": "prettier --check ./**/*.sol",
"prepare": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safe-global/safe-modules.git"
},
"keywords": [
"Ethereum",
"Wallet",
"Safe",
"Safe module"
],
"author": "@safe-global",
"bugs": {
"url": "https://github.com/safe-global/safe-modules/issues"
},
"devDependencies": {
"@noble/curves": "^1.7.0",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.1.0",
"@safe-global/safe-4337-local-bundler": "workspace:^0.0.0",
"@safe-global/safe-4337-provider": "workspace:^0.0.0",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"cbor": "^9.0.2",
"debug": "^4.4.0",
"dotenv": "^16.4.7",
"ethers": "^6.13.4",
"hardhat": "^2.22.17",
"hardhat-deploy": "^0.12.4",
"husky": "^9.1.7",
"solc": "0.8.23",
"solhint": "^5.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"yargs": "^17.7.2"
},
"dependencies": {
"@account-abstraction/contracts": "0.7.0",
"@safe-global/safe-contracts": "1.4.1-2"
}
}