-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.7 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
66
67
68
69
70
71
72
{
"name": "@solidstate/hardhat-git",
"version": "1.0.3",
"description": "Git-rev-based HRE execution",
"keywords": [
"hardhat",
"buidler",
"plugin",
"solidity",
"solc",
"smart-contracts",
"ethereum",
"ether",
"eth",
"blockchain",
"wow",
"git",
"hre"
],
"repository": "github:solidstate-network/hardhat-git.git",
"license": "MIT",
"author": "Nick Barry",
"type": "module",
"exports": {
".": "./dist/index.js",
"./hre": "./dist/lib/hre.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.2",
"chalk": "^5.6.2",
"env-paths": "^4.0.0",
"package-manager-detector": "^1.6.0",
"simple-git": "^3.36.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-utils": "^4.1.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"
}
}