-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "@ambire/signature-validator",
"version": "1.4.0",
"description": "Signature validation library aiming to verify all different signature types for Ethereum and other EVM chains, including smart contract signatures (EIP 1271) and typed data (EIP 712)",
"main": "dist/index.js",
"scripts": {
"test": "tsc && (tape ./tests/*.js | tap-spec)",
"build": "tsc"
},
"keywords": [
"ethereum",
"smart-contracts",
"evm",
"signature-validation",
"ethers",
"ethersjs",
"cryptographic-signatures",
"ethereum-signer",
"eip712",
"eip1271",
"signtypeddata"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AmbireTech/signature-validator.git"
},
"author": "AmbireTech",
"license": "MIT",
"bugs": {
"url": "https://github.com/AmbireTech/signature-validator/issues"
},
"homepage": "https://github.com/AmbireTech/signature-validator#readme",
"peerDependencies": {
"viem": ">=2"
},
"dependencies": {
"ethers": "^5.6.5",
"tap-spec": "^5.0.0",
"tape": "^5.5.3"
},
"devDependencies": {
"@types/node": "^18.15.3",
"typescript": "^5.5.4"
}
}