Skip to content

Commit 9aba57b

Browse files
committed
fix: use explicit .js extensions for all imports
- Update all exports to use explicit .js extensions - Reference index.js files explicitly - Ensure consistent module resolution - Bump version to 0.3.4
1 parent aeb7182 commit 9aba57b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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.3",
3+
"version": "0.3.4",
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/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ export { createWSServer as createServer } from './core/nostr-server.js';
1313
export { getLogger } from './utils/logger.js';
1414

1515
// Crypto operations
16-
export * from './crypto';
16+
export * from './crypto/index.js';
1717

1818
// NIP implementations
19-
export * from './nips';
19+
export * from './nips/index.js';
2020

2121
// Type definitions
22-
export * from './types';
22+
export * from './types/index.js';

0 commit comments

Comments
 (0)