-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.21 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.21 KB
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
{
"name": "account-modules",
"version": "0.1.0",
"description": "A collection of ERC-7579 and smart session modules built by Stackup.",
"license": "GPL-3.0",
"author": {
"name": "Stackup",
"url": "https://github.com/stackup-wallet"
},
"scripts": {
"build": "forge build",
"build:optimized": "FOUNDRY_PROFILE=optimized forge build",
"build:smt": "FOUNDRY_PROFILE=smt forge build",
"clean": "rm -rf artifacts broadcast cache docs out out-optimized out-svg",
"gas:report": "forge test --gas-report --mp \"./test/integration/**/*.sol\" --nmt \"test(Fuzz)?_RevertWhen_\\w{1,}?\"",
"gas:snapshot": "forge snapshot --mp \"./test/integration/**/*.sol\" --nmt \"test(Fuzz)?_RevertWhen_\\w{1,}?\"",
"gas:snapshot:optimized": "pnpm run build:optimized && FOUNDRY_PROFILE=test-optimized forge snapshot --mp \"./test/integration/**/*.sol\" --nmt \"test(Fork)?(Fuzz)?_RevertWhen_\\w{1,}?\"",
"lint": "pnpm run lint:sol && bun run prettier:check",
"lint:sol": "forge fmt --check && pnpm solhint \"{script,src,test}/**/*.sol\"",
"prepack": "pnpm install && bash ./shell/prepare-artifacts.sh",
"prettier:check": "prettier --check \"**/*.{json,md,svg,yml}\"",
"prettier:write": "prettier --write \"**/*.{json,md,svg,yml}\"",
"test": "forge test",
"test:lite": "FOUNDRY_PROFILE=lite forge test",
"test:optimized": "pnpm run build:optimized && FOUNDRY_PROFILE=test-optimized forge test",
"registry:attest": "tsx script/registry/attest.ts",
"registry:revoke": "tsx script/registry/revoke.ts"
},
"dependencies": {
"@rhinestone/flatbytes": "github:rhinestonewtf/flatbytes",
"@rhinestone/modulekit": "^0.4.17",
"tsx": "^4.19.2",
"viem": "^2.21.48"
},
"files": [
"src",
"test",
"script",
"package.json",
"foundry.toml",
"remappings.txt"
],
"homepage": "https://github.com/stackup-wallet/account-modules",
"repository": {
"type": "git",
"url": "git+https://github.com/stackup-wallet/account-modules.git"
},
"bugs": {
"url": "https://github.com/stackup-wallet/account-modules/issues"
},
"keywords": [
"account abstraction",
"smart account modules",
"iam"
],
"publishConfig": {
"access": "public"
}
}