@ledgerhq/hw-transport-http 6.33.0-nightly.20260109024422 → 6.33.0-nightly.20260113024349

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -4
  2. package/package.json +14 -4
package/CHANGELOG.md CHANGED
@@ -1,17 +1,19 @@
1
1
  # @ledgerhq/hw-transport-http
2
2
 
3
- ## 6.33.0-nightly.20260109024422
3
+ ## 6.33.0-nightly.20260113024349
4
4
 
5
5
  ### Minor Changes
6
6
 
7
+ - [#13632](https://github.com/LedgerHQ/ledger-live/pull/13632) [`93e16fa`](https://github.com/LedgerHQ/ledger-live/commit/93e16fada5fa1b3c4319738d612711810e985aca) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Remove every /lib-es/ from import paths
8
+
7
9
  - [#13396](https://github.com/LedgerHQ/ledger-live/pull/13396) [`b9a3e43`](https://github.com/LedgerHQ/ledger-live/commit/b9a3e431be33943ab4feb4294d6a7f27b966e61b) Thanks [@gre-ledger](https://github.com/gre-ledger)! - Update Jest to v30
8
10
 
9
11
  ### Patch Changes
10
12
 
11
13
  - Updated dependencies [[`b9a3e43`](https://github.com/LedgerHQ/ledger-live/commit/b9a3e431be33943ab4feb4294d6a7f27b966e61b)]:
12
- - @ledgerhq/hw-transport@6.32.0-nightly.20260109024422
13
- - @ledgerhq/errors@6.29.0-nightly.20260109024422
14
- - @ledgerhq/logs@6.14.0-nightly.20260109024422
14
+ - @ledgerhq/hw-transport@6.32.0-nightly.20260113024349
15
+ - @ledgerhq/errors@6.29.0-nightly.20260113024349
16
+ - @ledgerhq/logs@6.14.0-nightly.20260113024349
15
17
 
16
18
  ## 6.32.0
17
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/hw-transport-http",
3
- "version": "6.33.0-nightly.20260109024422",
3
+ "version": "6.33.0-nightly.20260113024349",
4
4
  "description": "Ledger Hardware Wallet communication layer over http",
5
5
  "keywords": [
6
6
  "Ledger",
@@ -22,6 +22,16 @@
22
22
  "publishConfig": {
23
23
  "access": "public"
24
24
  },
25
+ "exports": {
26
+ ".": {
27
+ "import": "./lib-es/withStaticURLs.js",
28
+ "require": "./lib/withStaticURLs.js"
29
+ },
30
+ "./WebSocketTransport": {
31
+ "import": "./lib-es/WebSocketTransport.js",
32
+ "require": "./lib/WebSocketTransport.js"
33
+ }
34
+ },
25
35
  "main": "lib/withStaticURLs.js",
26
36
  "module": "lib-es/withStaticURLs.js",
27
37
  "types": "lib/withStaticURLs.d.ts",
@@ -29,9 +39,9 @@
29
39
  "dependencies": {
30
40
  "axios": "1.13.2",
31
41
  "ws": "8.18.3",
32
- "@ledgerhq/errors": "^6.29.0-nightly.20260109024422",
33
- "@ledgerhq/hw-transport": "6.32.0-nightly.20260109024422",
34
- "@ledgerhq/logs": "^6.14.0-nightly.20260109024422"
42
+ "@ledgerhq/errors": "^6.29.0-nightly.20260113024349",
43
+ "@ledgerhq/hw-transport": "6.32.0-nightly.20260113024349",
44
+ "@ledgerhq/logs": "^6.14.0-nightly.20260113024349"
35
45
  },
36
46
  "gitHead": "dd0dea64b58e5a9125c8a422dcffd29e5ef6abec",
37
47
  "devDependencies": {