-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1019 Bytes
/
package.json
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
{
"name": "hardhat-generate-function-selectors",
"version": "1.18.1",
"description": "A Hardhat plugin to generate function selectors from Solidity contracts.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "tsc --build"
},
"author": "3obby",
"license": "MIT",
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"ethers": "^5.4.6"
},
"peerDependencies": {
"hardhat": "^2.17.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"hardhat": "^2.17.0",
"typescript": "^5.1.6",
"@nomiclabs/hardhat-ethers": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3obby/function-selectors-plugin.git"
},
"keywords": [
"function",
"selectors",
"tooling",
"router"
],
"bugs": {
"url": "https://github.com/3obby/function-selectors-plugin/issues"
},
"homepage": "https://github.com/3obby/function-selectors-plugin#readme"
}