@libp2p/config 1.1.27 → 1.1.29

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.
@@ -36,6 +36,6 @@
36
36
  * })
37
37
  * ```
38
38
  */
39
- export { loadOrCreateSelfKey } from './load-private-key.js';
40
- export type { LoadOrCreateSelfKeyOptions } from './load-private-key.js';
39
+ export { loadOrCreateSelfKey } from './load-private-key.ts';
40
+ export type { LoadOrCreateSelfKeyOptions } from './load-private-key.ts';
41
41
  //# sourceMappingURL=index.d.ts.map
package/dist/src/index.js CHANGED
@@ -36,5 +36,5 @@
36
36
  * })
37
37
  * ```
38
38
  */
39
- export { loadOrCreateSelfKey } from './load-private-key.js';
39
+ export { loadOrCreateSelfKey } from "./load-private-key.js";
40
40
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/config",
3
- "version": "1.1.27",
3
+ "version": "1.1.29",
4
4
  "description": "Helper functions to make dealing with libp2p config easier",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/config#readme",
@@ -26,7 +26,8 @@
26
26
  "exports": {
27
27
  ".": {
28
28
  "types": "./dist/src/index.d.ts",
29
- "import": "./dist/src/index.js"
29
+ "import": "./dist/src/index.js",
30
+ "module-sync": "./dist/src/index.js"
30
31
  }
31
32
  },
32
33
  "scripts": {
@@ -39,10 +40,10 @@
39
40
  "doc-check": "aegir doc-check"
40
41
  },
41
42
  "dependencies": {
42
- "@libp2p/crypto": "^5.1.15",
43
- "@libp2p/interface": "^3.2.0",
44
- "@libp2p/keychain": "^6.0.12",
45
- "@libp2p/logger": "^6.2.4",
43
+ "@libp2p/crypto": "^5.1.17",
44
+ "@libp2p/interface": "^3.2.2",
45
+ "@libp2p/keychain": "^6.0.14",
46
+ "@libp2p/logger": "^6.2.6",
46
47
  "interface-datastore": "^9.0.1"
47
48
  },
48
49
  "devDependencies": {
package/src/index.ts CHANGED
@@ -37,5 +37,5 @@
37
37
  * ```
38
38
  */
39
39
 
40
- export { loadOrCreateSelfKey } from './load-private-key.js'
41
- export type { LoadOrCreateSelfKeyOptions } from './load-private-key.js'
40
+ export { loadOrCreateSelfKey } from './load-private-key.ts'
41
+ export type { LoadOrCreateSelfKeyOptions } from './load-private-key.ts'