forked from latticexyz/mud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.77 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
{
"name": "@latticexyz/std-contracts",
"license": "MIT",
"version": "1.40.0",
"description": "MUD Contracts Standard Library",
"types": "./types/ethers-contracts/",
"repository": {
"type": "git",
"url": "https://github.com/latticexyz/mud.git",
"directory": "packages/std-contracts"
},
"scripts": {
"prepare": "yarn build && chmod u+x git-install.sh",
"git:install": "bash git-install.sh",
"test": "forge test",
"build": "rimraf out && forge build && yarn dist && yarn types",
"dist": "rimraf abi && mkdir abi && cat exports.txt | cut -d: -f7 | sort -n | uniq | xargs -n 1 sh -c 'cp out/\"$@\".sol/*.json abi/' sh && rimraf abi/*.metadata.json",
"types": "rimraf types && typechain --target=ethers-v5 abi/*.json",
"prettier": "prettier --write 'src/**/*.sol'",
"solhint": "solhint --config ./.solhint.json 'src/**/*.sol'",
"lint": "yarn prettier && yarn solhint",
"link": "yarn link",
"docs": "rimraf API && hardhat docgen && echo 'label: API\norder: 50' > API/index.yml",
"release": "npm publish --access=public"
},
"devDependencies": {
"@latticexyz/solecs": "^1.40.0",
"@rari-capital/solmate": "https://github.com/Rari-Capital/solmate.git#b6ae78e6ff490f8fec7695c7b65d06e5614f1b65",
"@typechain/ethers-v5": "^9.0.0",
"ds-test": "https://github.com/dapphub/ds-test.git#c9ce3f25bde29fc5eb9901842bf02850dfd2d084",
"forge-std": "https://github.com/foundry-rs/forge-std.git#b4f121555729b3afb3c5ffccb62ff4b6e2818fd3",
"hardhat": "^2.10.1",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.2",
"rimraf": "^3.0.2",
"solhint": "^3.3.7",
"solidity-docgen": "^0.6.0-beta.22",
"typechain": "^8.1.1",
"typedoc": "^0.23.10"
},
"gitHead": "914a1e0ae4a573d685841ca2ea921435057deb8f"
}