|
1 | 1 | {
|
2 | 2 | "name": "@rhinestone/registry",
|
| 3 | + "version": "1.0.0", |
3 | 4 | "description": "Attestation Registry for securely using Smart Account Modules",
|
4 | 5 | "license": "GPL-3.0",
|
5 |
| - "version": "1.0.0", |
6 | 6 | "author": {
|
7 | 7 | "name": "Rhinestone",
|
8 | 8 | "url": "https://rhinestone.wtf"
|
9 | 9 | },
|
10 |
| - "bugs": { |
11 |
| - "url": "https://github.com/rhinestonewtf/registry/issues" |
| 10 | + "scripts": { |
| 11 | + "build": "forge build", |
| 12 | + "build:optimized": "FOUNDRY_PROFILE=optimized forge build", |
| 13 | + "build:smt": "FOUNDRY_PROFILE=smt forge build", |
| 14 | + "clean": "rm -rf artifacts broadcast cache docs out out-optimized out-svg", |
| 15 | + "gas:report": "forge test --gas-report --mp \"./test/integration/**/*.sol\" --nmt \"test(Fuzz)?_RevertWhen_\\w{1,}?\"", |
| 16 | + "gas:snapshot": "forge snapshot --mp \"./test/integration/**/*.sol\" --nmt \"test(Fuzz)?_RevertWhen_\\w{1,}?\"", |
| 17 | + "gas:snapshot:optimized": "pnpm run build:optimized && FOUNDRY_PROFILE=test-optimized forge snapshot --mp \"./test/integration/**/*.sol\" --nmt \"test(Fork)?(Fuzz)?_RevertWhen_\\w{1,}?\"", |
| 18 | + "lint:sol": "forge fmt --check && pnpm solhint \"{script,src,test}/**/*.sol\"", |
| 19 | + "prepack": "pnpm install", |
| 20 | + "test": "forge test", |
| 21 | + "test:lite": "FOUNDRY_PROFILE=lite forge test", |
| 22 | + "test:optimized": "pnpm run build:optimized && FOUNDRY_PROFILE=test-optimized forge test", |
| 23 | + "build:docs": "forge doc && cd ./docs && rm -rf ./src/src/DataTypes.sol; mdbook build && cd ..", |
| 24 | + "natspec": "natspec-smells", |
| 25 | + "spellcheck": "cspell '**'" |
12 | 26 | },
|
13 | 27 | "dependencies": {
|
14 | 28 | "@openzeppelin/contracts": "5.0.1"
|
|
20 | 34 | "forge-std": "github:foundry-rs/forge-std#v1.7.6",
|
21 | 35 | "solady": "github:vectorized/solady#9deb9ed36a27261a8745db5b7cd7f4cdc3b1cd4e",
|
22 | 36 | "solhint": "^4.5.2",
|
23 |
| - "solmate": "github:transmissions11/solmate#c892309933b25c03d32b1b0d674df7ae292ba925" |
| 37 | + "solmate": "github:transmissions11/solmate#c892309933b25c03d32b1b0d674df7ae292ba925", |
| 38 | + "@rhinestone/erc4337-validation": "github:rhinestonewtf/erc4337-validation" |
24 | 39 | },
|
25 | 40 | "files": [
|
26 |
| - "artifacts", |
27 | 41 | "src",
|
28 |
| - "test/utils", |
29 |
| - "CHANGELOG.md", |
30 |
| - "LICENSE-GPL.md" |
| 42 | + "foundry.toml", |
| 43 | + "remappings.txt" |
31 | 44 | ],
|
32 | 45 | "homepage": "https://github.com/rhinestonewtf/registry/#readme",
|
| 46 | + "repository": { |
| 47 | + "type": "git", |
| 48 | + "url": "https://github.com/rhinestonewtf/registry.git" |
| 49 | + }, |
| 50 | + "bugs": { |
| 51 | + "url": "https://github.com/rhinestonewtf/registry/issues" |
| 52 | + }, |
33 | 53 | "keywords": [
|
34 |
| - "blockchain", |
35 |
| - "ethereum", |
36 |
| - "foundry", |
37 |
| - "smart-contracts", |
38 |
| - "solidity", |
39 |
| - "web3" |
| 54 | + "account abstraction", |
| 55 | + "smart account modules", |
| 56 | + "registry", |
| 57 | + "smart account security" |
40 | 58 | ],
|
41 | 59 | "publishConfig": {
|
42 | 60 | "access": "public"
|
43 |
| - }, |
44 |
| - "repository": "github:rhinestonewtf/registry", |
45 |
| - "scripts": { |
46 |
| - "build": "forge build", |
47 |
| - "build:optimized": "FOUNDRY_PROFILE=optimized forge build", |
48 |
| - "build:smt": "FOUNDRY_PROFILE=smt forge build", |
49 |
| - "clean": "rm -rf artifacts broadcast cache docs out out-optimized out-svg", |
50 |
| - "gas:report": "forge test --gas-report --mp \"./test/integration/**/*.sol\" --nmt \"test(Fuzz)?_RevertWhen_\\w{1,}?\"", |
51 |
| - "gas:snapshot": "forge snapshot --mp \"./test/integration/**/*.sol\" --nmt \"test(Fuzz)?_RevertWhen_\\w{1,}?\"", |
52 |
| - "gas:snapshot:optimized": "pnpm run build:optimized && FOUNDRY_PROFILE=test-optimized forge snapshot --mp \"./test/integration/**/*.sol\" --nmt \"test(Fork)?(Fuzz)?_RevertWhen_\\w{1,}?\"", |
53 |
| - "lint:sol": "forge fmt --check && pnpm solhint \"{script,src,test}/**/*.sol\"", |
54 |
| - "prepack": "pnpm install", |
55 |
| - "test": "forge test", |
56 |
| - "test:lite": "FOUNDRY_PROFILE=lite forge test", |
57 |
| - "test:optimized": "pnpm run build:optimized && FOUNDRY_PROFILE=test-optimized forge test", |
58 |
| - "build:docs": "forge doc && cd ./docs && rm -rf ./src/src/DataTypes.sol; mdbook build && cd ..", |
59 |
| - "natspec": "natspec-smells", |
60 |
| - "spellcheck": "cspell '**'" |
61 | 61 | }
|
62 | 62 | }
|
0 commit comments