-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "eth-lattice-keyring",
"version": "1.1.0",
"description": "Keyring for connecting to the Lattice1 hardware wallet",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GridPlus/eth-lattice-keyring.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/GridPlus/eth-lattice-keyring/issues"
},
"homepage": "https://github.com/GridPlus/eth-lattice-keyring#readme",
"dependencies": {
"@ethereumjs/tx": "^4.2.0",
"@ethereumjs/util": "^8.0.0",
"@noble/secp256k1": "^1.7.0",
"bn.js": "^5.2.0",
"gridplus-sdk": "^4.0.0",
"rlp": "^3.0.0"
},
"devDependencies": {
"@types/node": "^24.10.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
}
}