-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.32 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.32 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
{
"name": "TODO",
"version": "0.0.0",
"description": "TODO",
"keywords": [
"hardhat",
"buidler",
"plugin",
"solidity",
"solc",
"smart-contracts",
"ethereum",
"ether",
"eth",
"blockchain",
"wow"
],
"repository": "TODO",
"license": "TODO",
"author": "TODO",
"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 .",
"test": "pnpm clean && tsx --test --experimental-test-coverage"
},
"dependencies": {
"@solidstate/hardhat-solidstate-utils": "^1.0.0"
},
"devDependencies": {
"@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": {
"hardhat": "^3.0.0"
},
"publishConfig": {
"access": "public"
}
}