-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.58 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
{
"name": "beta-contracts",
"version": "1.0.0",
"repository": "github:ethereumfollowprotocol/beta-contractst",
"type": "module",
"scripts": {
"build": "wagmi generate && bun format:ts && (cp ./generated/abi.ts ../indexer/src/abi/generated/index.ts || true)",
"clean": "forge clean",
"docs": "forge doc --serve --port 4433 --open",
"deploy:localhost": "forge script scripts/deploy.s.sol --fork-url https://eth-sepolia.g.alchemy.com/v2/[ALCHEMY_ID] --broadcast --private-key [PRIVATE_KEY] && bun enable-public-mint",
"enable-public-mint": "bun ./scripts/update-mint-state.ts --public-batch",
"format:sol": "forge fmt",
"format:ts": "prettier --config .prettierrc --write ./generated/**/*.ts ./scripts/**/*.ts wagmi.config.ts",
"format": "bun format:ts && bun format:sol",
"geiger": "forge geiger --check",
"launch:localhost": "bun deploy:localhost && bun mint:localhost",
"lint": "bun lint:ts && bun lint:sol",
"lint:sol": "solhint 'scripts/**/*.sol' 'src/**/*.sol'",
"lint:ts": "bun x oxlint@latest --import-plugin --ignore-path='.eslintignore' --fix .",
"mint:localhost": "./scripts/mint.sh"
},
"dependencies": {
"@wagmi/cli": "^2.0.4",
"viem": "^2.9.29",
"wagmi": "^2.3.1"
},
"devDependencies": {
"@types/bun": "^1.0.2",
"@types/node": "^20.11.5",
"bun": "^1.0.24",
"prettier": "^3.2.4",
"solc": "^0.8.23",
"solhint": "^4.1.1",
"typescript": "^5.3.3"
},
"license": "UNLICENSED"
}