forked from ourzora/nouns-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.53 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
{
"name": "@zoralabs/nouns-protocol",
"version": "1.0.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/ourzora/nouns-protocol.git"
},
"files": [
"dist/**/*",
"dist/*"
],
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.8.0-rc.1",
"@types/node": "^18.7.13",
"ds-test": "https://github.com/dapphub/ds-test.git",
"forge-std": "https://github.com/foundry-rs/forge-std",
"micro-onchain-metadata-utils": "^0.1.1",
"sol-uriencode": "^0.2.0"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.1.0",
"ethers": "^5.7.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"typechain": "^8.1.0",
"typescript": "^4.8.2"
},
"lint-staged": {
"*.{ts,js,css,md,sol}": "prettier --write",
"*.sol": "solhint"
},
"scripts": {
"build": "forge build && rm -rf ./dist/artifacts/*/*.metadata.json && yarn typechain && tsc",
"clean": "forge clean && rm -rf ./dist",
"prepublishOnly": "rm -rf ./dist && forge clean && mkdir -p ./dist/artifacts && yarn build && cp -R src dist && cp -R addresses dist",
"test": "echo 'temporarily skipping metadata tests, remove this when fixed' && forge test --no-match-test 'WithAddress' -vvv",
"typechain": "typechain --target=ethers-v5 'dist/artifacts/*/*.json' --out-dir dist/typechain"
}
}