nostr-websocket-utils 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.
- package/README.md +4 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -176,10 +176,10 @@ See the `examples/browser.html` file for a complete example of browser usage.
|
|
|
176
176
|
## Dependencies
|
|
177
177
|
|
|
178
178
|
This package uses:
|
|
179
|
-
- nostr-crypto-utils (^0.
|
|
180
|
-
- pino (^
|
|
181
|
-
- ws (^8.
|
|
182
|
-
- uuid (^
|
|
179
|
+
- nostr-crypto-utils (^0.6.0) for cryptographic operations
|
|
180
|
+
- pino (^10.3.1) for logging
|
|
181
|
+
- ws (^8.19.0) for WebSocket functionality
|
|
182
|
+
- uuid (^13.0.0) for unique identifiers
|
|
183
183
|
|
|
184
184
|
## Documentation
|
|
185
185
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nostr-websocket-utils",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Robust WebSocket utilities for Nostr applications with automatic reconnection, supporting both ESM and CommonJS. Features channel-based messaging, heartbeat monitoring, message queueing, and comprehensive error handling with type-safe handlers.",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -61,20 +61,20 @@
|
|
|
61
61
|
"homepage": "https://github.com/HumanjavaEnterprises/nostr-websocket-utils#readme",
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@types/uuid": "^10.0.0",
|
|
64
|
-
"nostr-crypto-utils": "^0.
|
|
64
|
+
"nostr-crypto-utils": "^0.7.0",
|
|
65
65
|
"pino": "^10.3.1",
|
|
66
66
|
"uuid": "^13.0.0",
|
|
67
67
|
"ws": "^8.19.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@eslint/js": "^10.0.1",
|
|
71
|
-
"@types/node": "^
|
|
71
|
+
"@types/node": "^22.19.15",
|
|
72
72
|
"@types/ws": "^8.18.1",
|
|
73
73
|
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
74
74
|
"@typescript-eslint/parser": "^8.56.0",
|
|
75
75
|
"@vitest/coverage-v8": "^4.0.18",
|
|
76
76
|
"esbuild": "^0.27.3",
|
|
77
|
-
"eslint": "^10.0.
|
|
77
|
+
"eslint": "^10.0.3",
|
|
78
78
|
"typedoc": "^0.28.17",
|
|
79
79
|
"typedoc-plugin-markdown": "^4.10.0",
|
|
80
80
|
"typescript": "^5.9.3",
|