@did-btcr2/kms 0.4.0 → 0.4.1

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.
@@ -1,3 +1,4 @@
1
1
  export * from './interface.js';
2
2
  export * from './kms.js';
3
3
  export * from './store.js';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -108,3 +108,4 @@ export interface KeyManager {
108
108
  */
109
109
  generateKey(options?: GenerateKeyOptions): KeyIdentifier;
110
110
  }
111
+ //# sourceMappingURL=interface.d.ts.map
@@ -116,3 +116,4 @@ export declare class Kms implements KeyManager {
116
116
  */
117
117
  exportKey(id: KeyIdentifier): SchnorrKeyPair;
118
118
  }
119
+ //# sourceMappingURL=kms.d.ts.map
@@ -31,3 +31,4 @@ export declare class MemoryStore<K, V> implements KeyValueStore<K, V> {
31
31
  entries(): Array<[K, V]>;
32
32
  set(key: K, value: V): void;
33
33
  }
34
+ //# sourceMappingURL=store.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@did-btcr2/kms",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "type": "module",
5
5
  "description": "Key manager that can be used with the did:btcr2 DID method",
6
6
  "main": "./dist/cjs/index.js",
@@ -56,8 +56,8 @@
56
56
  ],
57
57
  "dependencies": {
58
58
  "@noble/hashes": "^2.0.1",
59
- "@did-btcr2/common": "5.0.0",
60
- "@did-btcr2/keypair": "0.10.0"
59
+ "@did-btcr2/common": "^8.0.1",
60
+ "@did-btcr2/keypair": "^0.11.3"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@eslint/js": "^9.22.0",