-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) 路 1.39 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) 路 1.39 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
{
"name": "@solidstate/hardhat-linearization",
"version": "1.0.3",
"description": "Hardhat plugin to print Solidity linearization",
"license": "MIT",
"author": "Francisco Giordano, Nick Barry",
"type": "module",
"exports": {
".": "./dist/index.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 .",
"test": "pnpm clean && hardhat compile && tsx --test --experimental-test-coverage"
},
"dependencies": {
"@solidstate/hardhat-solidstate-utils": "^1.0.2",
"solidity-ast": "^0.4.62"
},
"devDependencies": {
"@nomicfoundation/hardhat-utils": "^4.1.3",
"@solidstate/contracts": "^1.0.0-next.3",
"@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",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@nomicfoundation/hardhat-utils": "^4.0.0",
"hardhat": "^3.8.0"
},
"publishConfig": {
"access": "public"
}
}