@quereus/sync-coordinator 0.3.7 → 0.3.8
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/dist/src/bin/sync-coordinator.js +0 -0
- package/package.json +68 -68
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@quereus/sync-coordinator",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "Standalone coordinator backend for Quereus Sync - production-ready sync server",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"quereus",
|
|
8
|
-
"sync",
|
|
9
|
-
"crdt",
|
|
10
|
-
"replication",
|
|
11
|
-
"coordinator",
|
|
12
|
-
"server",
|
|
13
|
-
"fastify",
|
|
14
|
-
"websocket"
|
|
15
|
-
],
|
|
16
|
-
"publisher": "Got Choices Foundation",
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "https://github.com/gotchoices/quereus.git",
|
|
20
|
-
"directory": "packages/sync-coordinator"
|
|
21
|
-
},
|
|
22
|
-
"license": "MIT",
|
|
23
|
-
"main": "dist/src/index.js",
|
|
24
|
-
"types": "./dist/src/index.d.ts",
|
|
25
|
-
"bin": "./dist/src/bin/sync-coordinator.js",
|
|
26
|
-
"files": [
|
|
27
|
-
"dist",
|
|
28
|
-
"!**/*.tsbuildinfo"
|
|
29
|
-
],
|
|
30
|
-
"exports": {
|
|
31
|
-
".": {
|
|
32
|
-
"types": "./dist/src/index.d.ts",
|
|
33
|
-
"import": "./dist/src/index.js"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"scripts": {
|
|
37
|
-
"clean": "rimraf dist",
|
|
38
|
-
"build": "tsc",
|
|
39
|
-
"dev": "tsx watch --clear-screen=false src/bin/sync-coordinator.ts --port 8080",
|
|
40
|
-
"typecheck": "tsc --noEmit",
|
|
41
|
-
"test": "cd ../.. && node --import ./packages/sync-coordinator/register.mjs node_modules/mocha/bin/mocha.js \"packages/sync-coordinator/test/**/*.spec.ts\" --colors",
|
|
42
|
-
"test:single": "cd ../.. && node --import ./packages/sync-coordinator/register.mjs node_modules/mocha/bin/mocha.js --bail",
|
|
43
|
-
"start": "npx sync-coordinator --port 8080 --debug 'sync-coordinator:*'"
|
|
44
|
-
},
|
|
45
|
-
"dependencies": {
|
|
46
|
-
"@fastify/cors": "^10.0.2",
|
|
47
|
-
"@fastify/websocket": "^11.0.2",
|
|
48
|
-
"@quereus/plugin-leveldb": "
|
|
49
|
-
"@quereus/quereus": "
|
|
50
|
-
"@quereus/store": "
|
|
51
|
-
"@quereus/sync": "
|
|
52
|
-
"commander": "^14.0.0",
|
|
53
|
-
"debug": "^4.4.0",
|
|
54
|
-
"fastify": "^5.2.1"
|
|
55
|
-
},
|
|
56
|
-
"devDependencies": {
|
|
57
|
-
"@types/debug": "^4.1.12",
|
|
58
|
-
"@types/mocha": "^10.0.10",
|
|
59
|
-
"@types/node": "^22.15.29",
|
|
60
|
-
"@types/ws": "^8.18.1",
|
|
61
|
-
"chai": "^5.2.0",
|
|
62
|
-
"mocha": "^11.5.0",
|
|
63
|
-
"rimraf": "^6.1.2",
|
|
64
|
-
"ts-node": "^10.9.2",
|
|
65
|
-
"tsx": "^4.19.0",
|
|
66
|
-
"typescript": "^5.8.3"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@quereus/sync-coordinator",
|
|
3
|
+
"version": "0.3.8",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Standalone coordinator backend for Quereus Sync - production-ready sync server",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"quereus",
|
|
8
|
+
"sync",
|
|
9
|
+
"crdt",
|
|
10
|
+
"replication",
|
|
11
|
+
"coordinator",
|
|
12
|
+
"server",
|
|
13
|
+
"fastify",
|
|
14
|
+
"websocket"
|
|
15
|
+
],
|
|
16
|
+
"publisher": "Got Choices Foundation",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/gotchoices/quereus.git",
|
|
20
|
+
"directory": "packages/sync-coordinator"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"main": "dist/src/index.js",
|
|
24
|
+
"types": "./dist/src/index.d.ts",
|
|
25
|
+
"bin": "./dist/src/bin/sync-coordinator.js",
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"!**/*.tsbuildinfo"
|
|
29
|
+
],
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/src/index.d.ts",
|
|
33
|
+
"import": "./dist/src/index.js"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"clean": "rimraf dist",
|
|
38
|
+
"build": "tsc",
|
|
39
|
+
"dev": "tsx watch --clear-screen=false src/bin/sync-coordinator.ts --port 8080",
|
|
40
|
+
"typecheck": "tsc --noEmit",
|
|
41
|
+
"test": "cd ../.. && node --import ./packages/sync-coordinator/register.mjs node_modules/mocha/bin/mocha.js \"packages/sync-coordinator/test/**/*.spec.ts\" --colors",
|
|
42
|
+
"test:single": "cd ../.. && node --import ./packages/sync-coordinator/register.mjs node_modules/mocha/bin/mocha.js --bail",
|
|
43
|
+
"start": "npx sync-coordinator --port 8080 --debug 'sync-coordinator:*'"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@fastify/cors": "^10.0.2",
|
|
47
|
+
"@fastify/websocket": "^11.0.2",
|
|
48
|
+
"@quereus/plugin-leveldb": "^0.2.5",
|
|
49
|
+
"@quereus/quereus": "^0.8.8",
|
|
50
|
+
"@quereus/store": "^0.3.9",
|
|
51
|
+
"@quereus/sync": "^0.3.6",
|
|
52
|
+
"commander": "^14.0.0",
|
|
53
|
+
"debug": "^4.4.0",
|
|
54
|
+
"fastify": "^5.2.1"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@types/debug": "^4.1.12",
|
|
58
|
+
"@types/mocha": "^10.0.10",
|
|
59
|
+
"@types/node": "^22.15.29",
|
|
60
|
+
"@types/ws": "^8.18.1",
|
|
61
|
+
"chai": "^5.2.0",
|
|
62
|
+
"mocha": "^11.5.0",
|
|
63
|
+
"rimraf": "^6.1.2",
|
|
64
|
+
"ts-node": "^10.9.2",
|
|
65
|
+
"tsx": "^4.19.0",
|
|
66
|
+
"typescript": "^5.8.3"
|
|
67
|
+
}
|
|
68
|
+
}
|