-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "hardhat-sync-selectors",
"version": "1.1.0",
"description": "Hardhat plugin to sync selectors to various directories",
"repository": "github:akshatmittal/hardhat-sync-selectors",
"author": "Akshat Mittal",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"4byte",
"openchain",
"signature-database",
"selector",
"selectors",
"function-selector",
"function-signature",
"signature",
"signatures",
"solidity",
"solc",
"blockchain"
],
"scripts": {
"format": "prettier --write 'src/**/*.{js,ts}'",
"build": "tsup",
"watch": "tsup --watch",
"prepublishOnly": "npm run build"
},
"files": [
"dist/src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.5",
"axios": "^1.4.0",
"ethers": "^5.7.2",
"hardhat": "^2.17.1",
"prettier": "3.0.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"hardhat": "^2.0.0"
},
"packageManager": "yarn@3.6.1"
}