-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "@solidstate/hardhat-linearization",
"version": "1.0.0",
"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.0",
"solidity-ast": "^0.4.60"
},
"devDependencies": {
"@nomicfoundation/hardhat-utils": "^3.0.0",
"@solidstate/contracts": "^1.0.0-next.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^24.2.1",
"exec-staged": "^0.1.0",
"hardhat": "^3.0.0",
"husky": "^9.1.7",
"knip-exec-staged": "^5.63.1",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"prettier-plugin-solidity": "^2.1.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@nomicfoundation/hardhat-utils": "^3.0.0",
"hardhat": "^3.0.0"
},
"publishConfig": {
"access": "public"
}
}