generated from rhinestonewtf/module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.72 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
{
"name": "semaphore-msa-validator",
"version": "0.0.1",
"description": "Semaphore Modular Smart Account Validator",
"license": "GPL-3.0",
"author": {
"name": "Jimmy Chu",
"url": "https://jimmychu0807.hk"
},
"homepage": "https://github.com/jimmychu0807/semaphore-msa-validator",
"repository": {
"type": "git",
"url": "git+https://github.com/jimmychu0807/semaphore-msa-validator.git"
},
"bugs": {
"url": "https://github.com/jimmychu0807/semaphore-msa-validator/issues"
},
"devDependencies": {
"@rhinestone/modulekit": "^0.4.17",
"@rhinestone/checknsignatures": "github:rhinestonewtf/checknsignatures",
"@rhinestone/flatbytes": "github:rhinestonewtf/flatbytes",
"@rhinestone/sentinellist": "github:rhinestonewtf/sentinellist",
"@semaphore-protocol/contracts": "github:semaphore-protocol/semaphore#main&path:/packages/contracts/contracts",
"@semaphore-protocol/core": "github:semaphore-protocol/semaphore#main&path:/packages/core",
"solady": "^0.0.267",
"solhint": "^5.0.3"
},
"files": [
"src",
"test",
"script",
"package.json",
"foundry.toml",
"remappings.txt"
],
"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",
"compile": "pnpm build",
"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 && pnpm run prettier:check",
"lint:sol": "forge fmt --check && pnpm solhint \"{script,src,test}/**/*.sol\"",
"lint:write": "forge fmt && pnpm run prettier:write",
"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": "COMPLIANCE=true forge test",
"test:lite": "FOUNDRY_PROFILE=lite forge test",
"test:optimized": "pnpm run build:optimized && FOUNDRY_PROFILE=test-optimized forge test"
},
"keywords": [
"account abstraction",
"smart account modules",
"semaphore"
],
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a"
}