-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1019 Bytes
/
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": "@anders-t/ethers-ledger",
"version": "1.0.4",
"description": "Hardware Wallet support for ethers (NodeJS only).",
"author": "Anders Torbjørnsen <[email protected]>",
"dependencies": {
"@ledgerhq/hw-app-eth": "^6.24.0",
"@ledgerhq/hw-transport-node-hid": "^6.20.0",
"ethers": "^5.5.4"
},
"keywords": [
"Ethereum",
"ethers",
"cli",
"Ledger"
],
"license": "MIT",
"main": "./lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/anders-torbjornsen/ethers-ledger.git"
},
"bugs": {
"url": "https://github.com/anders-torbjornsen/ethers-ledger/issues"
},
"homepage": "https://github.com/anders-torbjornsen/ethers-ledger",
"scripts": {
"build": "tsc"
},
"sideEffects": false,
"types": "./lib/index.d.ts",
"devDependencies": {
"@types/node": "^16.11.12",
"@types/node-hid": "^1.3.1",
"typescript": "^4.5.3"
},
"files": [
"lib/"
]
}