-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.7 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@nimiq/ledger-api",
"version": "3.1.1",
"description": "Api for communicating with Ledger Hardware Wallets",
"main": "dist/high-level-api/ledger-api.es.js",
"type": "module",
"types": "dist/high-level-api/ledger-api.d.ts",
"files": [
"transport-comparison.md",
"src/lib/type-shims.d.ts",
"dist",
"!dist/demo"
],
"sideEffects": false,
"scripts": {
"build": "rollup --config --configProduction",
"serve": "rollup --config --watch --configServe",
"speculos-bridge": "node speculos-bridge/speculos-bridge.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nimiq/ledger-api.git"
},
"keywords": [
"nimiq",
"ledger",
"hardware-wallet",
"api"
],
"author": "Nimiq (https://www.nimiq.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nimiq/ledger-api/issues"
},
"homepage": "https://github.com/nimiq/ledger-api#readme",
"devDependencies": {
"@ledgerhq/hw-transport-node-speculos": "^6.27.20",
"@ledgerhq/logs": "^6.11.0",
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.5",
"@rollup/plugin-virtual": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"bitcoinjs-message": "^2.2.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"rollup": "^4.5.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@ledgerhq/hw-app-btc": "^10.0.9",
"@ledgerhq/hw-transport": "^6.29.0",
"@ledgerhq/hw-transport-http": "^6.28.4",
"@ledgerhq/hw-transport-u2f": "^5.36.0-deprecated",
"@ledgerhq/hw-transport-web-ble": "^6.27.20",
"@ledgerhq/hw-transport-webauthn": "^5.36.0-deprecated",
"@ledgerhq/hw-transport-webhid": "^6.27.20",
"@ledgerhq/hw-transport-webusb": "^6.27.20",
"@nimiq/albatross-wasm": "npm:@nimiq/core@^2.0.0",
"@nimiq/core-web": "^1.6.2",
"@types/ledgerhq__hw-transport-u2f": "^4.21.4",
"@types/w3c-web-usb": "^1.0.6",
"bitcoinjs-lib": "^5.2.0",
"buffer": "^6.0.3",
"readable-stream": "^4.4.2"
},
"resolutions": {
"rollup-plugin-sourcemaps/@rollup/pluginutils": "^5.0.5"
},
"overrides": {
"rollup-plugin-sourcemaps": {
"@rollup/pluginutils": "^5.0.5"
}
}
}