forked from ourzora/zora-721-contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 2.04 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
{
"name": "@zoralabs/nft-drop-contracts",
"version": "1.14.1",
"description": "ZORA NFT Drops Contracts",
"author": "ZORA",
"license": "MIT",
"private": false,
"type": "module",
"files": [
"dist/",
"src/",
"addresses/",
"chainConfigs/",
"package/"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "forge test",
"generate-merkle-test-file": "node scripts/merkle-test.mjs",
"clean": "rm -rf ./dist/",
"prepack": "yarn clean && yarn wagmi && yarn bundle-configs && yarn build-ts",
"deploy": "node scripts/deploy.mjs",
"coverage": "forge coverage --report lcov",
"build": "forge build",
"build-ts": "tsup package/index.ts --format cjs --dts --sourcemap",
"bundle-configs": "node js-scripts/bundle-chainConfigs.mjs",
"prettier": "npx prettier \"js-scripts/**/*.mjs\" \"package/**/*.ts\" \"wagmi.config.ts\" --check",
"prettier:fix": "npm run prettier -- --write",
"wagmi": "wagmi generate",
"storage-inspect:check": "./script/storage-check.sh check ERC721Drop ERC721DropProxy FactoryUpgradeGate ZoraNFTCreatorProxy ZoraNFTCreatorV1",
"storage-inspect:generate": "./script/storage-check.sh generate ERC721Drop ERC721DropProxy FactoryUpgradeGate ZoraNFTCreatorProxy ZoraNFTCreatorV1",
"release": "yarn run prepack && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/units": "^5.7.0",
"@types/node": "^20.1.2",
"@wagmi/cli": "^1.0.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.7",
"es-main": "^1.0.2",
"glob": "^10.2.7",
"keccak256": "^1.0.6",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@dotenv/cli": "^2.2.2",
"ds-test": "https://github.com/dapphub/ds-test#cd98eff28324bfac652e63a239a60632a761790b",
"forge-std": "https://github.com/foundry-rs/forge-std#cd7d533f9a0ee0ec02ad81e0a8f262bc4203c653"
}
}