-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.56 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@solidstate/hardhat-bytecode-exporter",
"version": "2.0.3",
"description": "Export Ethereum smart contract bytecode on compilation",
"keywords": [
"hardhat",
"buidler",
"bytecode",
"solidity",
"solc",
"smart-contracts",
"ethereum",
"blockchain",
"version-control",
"wow",
"dapps"
],
"repository": "github:solidstate-network/hardhat-bytecode-exporter",
"license": "MIT",
"author": "Nick Barry",
"type": "module",
"exports": {
".": "./dist/index.js",
"./types": "./dist/types.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "pnpm clean && tsc --build",
"clean": "rm -rf dist/",
"prepare": "husky",
"prepublishOnly": "pnpm build",
"prettier": "prettier --write ."
},
"dependencies": {
"@solidstate/hardhat-solidstate-utils": "^1.0.2",
"chalk": "^5.6.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-utils": "^4.1.3",
"@solidstate/contracts": "^0.0.61",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.9.2",
"exec-staged": "^0.2.3",
"hardhat": "^3.8.0",
"husky": "^9.1.7",
"knip-exec-staged": "^5.63.1",
"prettier": "^3.8.3",
"prettier-plugin-packagejson": "^3.0.2",
"prettier-plugin-solidity": "^2.3.1",
"release-it": "^20.2.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@nomicfoundation/hardhat-utils": "^4.0.0",
"hardhat": "^3.8.0"
},
"publishConfig": {
"access": "public"
}
}