-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "hardhat-contract-sizer",
"version": "2.10.0",
"license": "MIT",
"description": "Output Solidity contract sizes with Hardhat",
"keywords": [
"hardhat",
"buidler",
"abi",
"solidity",
"solc",
"smart-contracts",
"ethereum",
"blockchain",
"wow",
"bytecode"
],
"repository": "https://github.com/ItsNickBarry/hardhat-contract-sizer",
"author": "Nick Barry",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc --build",
"prepare": "husky",
"prettier": "prettier --write ."
},
"files": [
"dist/",
"src/"
],
"peerDependencies": {
"hardhat": "^2.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.7",
"hardhat": "^2.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-plugin-solidity": "^1.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"dependencies": {
"chalk": "^4.0.0",
"cli-table3": "^0.6.0",
"strip-ansi": "^6.0.0"
}
}