-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.71 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@ethers-ext/signer-ledger",
"version": "6.0.0-beta.1",
"description": "Ethers Signer for Ledger Hardware Wallet.",
"dependencies": {
"@ledgerhq/hw-app-eth": "6.33.0",
"ethers": "^6.6.0"
},
"devDependencies": {
"@ledgerhq/hw-transport-node-ble": "^6.27.17",
"@ledgerhq/hw-transport-node-hid": "^6.27.18",
"@ledgerhq/types-cryptoassets": "^7.3.1",
"@ledgerhq/types-devices": "^6.22.4",
"@types/node": "^20.4.2",
"@types/node-hid": "^1.3.1",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=14.0.0"
},
"exports": {
".": {
"import": "./lib.esm/index.js",
"default": "./lib.commonjs/index.js"
}
},
"ethereum": "donations.ethers.eth",
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/ethers-io"
}
],
"scripts": {
"auto-build": "npm run build -- -w",
"build": "tsc --build ./tsconfig.esm.json",
"build-all": "npm run build && npm run build-commonjs",
"build-clean": "npm run clean && npm run build-all",
"build-commonjs": "tsc --build ./tsconfig.commonjs.json",
"clean": "rm -rf lib.commonjs lib.esm && cp -r misc/basedirs/* .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "./lib.commonjs/index.js",
"module": "./lib.esm/index.js",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"keywords": [
"ethers",
"ethereum",
"ledger"
],
"repository": {
"type": "git",
"url": "git://github.com/ethers-io/signer-ledger.git"
},
"bugs": {
"url": "http://github.com/ethers-io/ext-signer-ledger/issues",
"email": "[email protected]"
},
"author": "Richard Moore <[email protected]>",
"license": "MIT"
}