@quereus/sync-coordinator 0.3.5 → 0.3.6
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 +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @quereus/sync-coordinator
|
|
2
2
|
|
|
3
|
-
Standalone coordinator backend for [@quereus/
|
|
3
|
+
Standalone coordinator backend for [@quereus/sync](../quereus-sync) — a production-ready server for multi-master CRDT replication.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
@@ -153,7 +153,7 @@ npm test # Run tests
|
|
|
153
153
|
|
|
154
154
|
## Related Packages
|
|
155
155
|
|
|
156
|
-
- [`@quereus/
|
|
156
|
+
- [`@quereus/sync`](../quereus-sync/) - Client-side sync module
|
|
157
157
|
- [`@quereus/sync-client`](../quereus-sync-client/) - WebSocket sync client
|
|
158
158
|
- [`@quereus/store`](../quereus-store/) - Storage base layer
|
|
159
159
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quereus/sync-coordinator",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Standalone coordinator backend for Quereus Sync - production-ready sync server",
|
|
6
6
|
"keywords": [
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@fastify/cors": "^10.0.2",
|
|
47
47
|
"@fastify/websocket": "^11.0.2",
|
|
48
|
-
"@quereus/plugin-store": "*",
|
|
49
|
-
"@quereus/plugin-sync": "*",
|
|
50
48
|
"@quereus/quereus": "*",
|
|
49
|
+
"@quereus/store": "*",
|
|
50
|
+
"@quereus/sync": "*",
|
|
51
51
|
"commander": "^14.0.0",
|
|
52
52
|
"debug": "^4.4.0",
|
|
53
53
|
"fastify": "^5.2.1"
|