-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.32 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
{
"name": "@siacentral/ledgerjs-sia",
"version": "1.1.0",
"description": "Ledger hardware wallet Siacoin API.",
"main": "lib/sia.js",
"types": "lib/sia.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test",
"preversion": "npm run lint"
},
"keywords": [
"Ledger",
"LedgerWallet",
"sc",
"Siacoin",
"sf",
"Siafund",
"NanoS",
"NanoX",
"Hardware Wallet"
],
"author": "Nate Maninger <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/siacentral/ledgerjs-sia"
},
"bugs": {
"url": "https://github.com/siacentral/ledgerjs-sia/issues"
},
"homepage": "https://github.com/siacentral/ledgerjs-sia",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@ledgerhq/hw-transport-mocker": "^6.3.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"jest": "^27.1.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"@ledgerhq/hw-transport-web-ble": "^6.3.0",
"@ledgerhq/hw-transport-webhid": "^6.4.1",
"@stablelib/base64": "^1.0.1",
"@stablelib/utf8": "^1.0.1",
"buffer": "^6.0.3"
},
"files": [
"lib/**/*"
]
}