-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 883 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 883 Bytes
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
{
"name": "hypercore-sim",
"version": "1.0.3",
"types": "./dist/esm/scripts/index.d.ts",
"module": "./dist/esm/scripts/index.js",
"main": "./dist/cjs/scripts/index.js",
"files": [
"contracts/*",
"dist/*",
"artifacts/contracts/*"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --outDir dist/esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"solhint": "solhint './contracts/*.sol'",
"pub": "hardhat clean && hardhat compile && npm run build && npm publish"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.0.2",
"hardhat": "^2.23.0",
"hardhat-contract-sizer": "^2.10.0",
"prettier": "^3.5.3",
"prettier-plugin-solidity": "^2.0.0",
"solhint": "^5.0.5"
}
}