-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "@metaphor-xyz/ens-claim",
"version": "1.0.1",
"description": "React hooks and components that help notify users to claim their $ENS airdrop.",
"homepage": "https://github.com/metaphor-xyz/ens-claim",
"repository": {
"type": "git",
"url": "https://github.com/metaphor-xyz/ens-claim.git"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"check": "npm run lint",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\"",
"fix": "eslint --fix \"src/**/*.{ts,tsx,js,jsx}\"",
"prepare": "husky install"
},
"author": "Metaphor",
"license": "MIT",
"devDependencies": {
"@metaphor-xyz/scaffold": "^1.0.0",
"@types/bn.js": "^5.1.0",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.11",
"husky": "^7.0.4",
"lint-staged": "^12.0.0",
"typescript": "^4.4.2"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"dependencies": {
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/providers": "^5.4.5",
"@ethersproject/solidity": "^5.5.0",
"bn.js": "^5.2.0",
"keccak256": "^1.0.3",
"merkletreejs": "^0.2.24"
}
}