Skip to content

Commit aeb7182

Browse files
committed
fix: update crypto exports to use proper module paths
- Fix directory import issue by explicitly exporting .js files - Add bech32 exports - Bump version to 0.3.3
1 parent e34772a commit aeb7182

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nostr-websocket-utils",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "Robust WebSocket utilities for Nostr applications with automatic reconnection, channel-based messaging, and type-safe handlers. Features heartbeat monitoring, message queueing, and comprehensive error handling.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/crypto/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
* @module crypto
44
*/
55

6-
export * from './handlers';
6+
export * from './handlers.js';
7+
export * from './bech32.js';

0 commit comments

Comments
 (0)