forked from danfinlay/eip712-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "eip712-codegen",
"version": "6.0.8",
"description": "A utility for generating Solidity code for recovering signatures using the EIP-712 signTypedData schema.",
"main": "index.js",
"bin": {
"eip712-codegen": "./cli.js"
},
"types": "./index.d.ts",
"scripts": {
"test": "mocha --timeout 10000",
"build": "npx tsc index.ts --downlevelIteration --declaration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danfinlay/eip712-codegen.git"
},
"keywords": [
"ethereum",
"eip",
"712",
"signature",
"recovery",
"web3",
"MetaMask"
],
"author": "Dan Finlay <dan@danfinlay.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danfinlay/eip712-codegen/issues"
},
"homepage": "https://github.com/danfinlay/eip712-codegen#readme",
"dependencies": {
"commander": "^9.2.0",
"signtypeddata-v5": "^5.0.1"
},
"peerDependencies": {
"signtypeddata-v5": "^5.0.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.16",
"chai": "^4.3.7",
"eth-sig-util": "^3.0.1",
"ethers": "^5.7.2",
"ganache-cli": "^6.12.2",
"hardhat": "^2.13.0",
"hardhat-ethers": "^1.0.1",
"mocha": "^10.2.0",
"typescript": "^4.6.3",
"yargs": "^17.7.1"
}
}