{
  "name": "@quereus/sync-coordinator",
  "version": "4.17.0",
  "type": "module",
  "description": "Standalone coordinator backend for Quereus Sync - production-ready sync server",
  "keywords": [
    "quereus",
    "sync",
    "crdt",
    "replication",
    "coordinator",
    "server",
    "fastify",
    "websocket"
  ],
  "publisher": "Got Choices Foundation",
  "repository": {
    "type": "git",
    "url": "https://github.com/gotchoices/quereus.git",
    "directory": "packages/sync-coordinator"
  },
  "license": "MIT",
  "main": "dist/src/index.js",
  "types": "./dist/src/index.d.ts",
  "bin": "./dist/src/bin/sync-coordinator.js",
  "files": [
    "dist",
    "!**/*.tsbuildinfo"
  ],
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/src/index.js"
    }
  },
  "scripts": {
    "clean": "rimraf dist",
    "build": "tsc",
    "lint": "echo 'No lint configured'",
    "dev": "tsx watch --clear-screen=false src/bin/sync-coordinator.ts --port 8080",
    "typecheck": "tsc --noEmit && tsc -p tsconfig.test.json --noEmit",
    "test": "cd ../.. && node --import ./packages/sync-coordinator/register.mjs node_modules/mocha/bin/mocha.js \"packages/sync-coordinator/test/**/*.spec.ts\" --reporter min --colors",
    "test:single": "cd ../.. && node --import ./packages/sync-coordinator/register.mjs node_modules/mocha/bin/mocha.js --bail",
    "start": "npx sync-coordinator --port 8080 --debug 'sync-coordinator:*'"
  },
  "dependencies": {
    "@aws-sdk/client-s3": "3.1069.0",
    "@fastify/cors": "^11.2.0",
    "@fastify/websocket": "^11.2.0",
    "@quereus/isolation": "^4.17.0",
    "@quereus/plugin-leveldb": "^4.17.0",
    "@quereus/quereus": "^4.17.0",
    "@quereus/store": "^4.17.0",
    "@quereus/sync": "^4.17.0",
    "commander": "^15.0.0",
    "debug": "^4.4.3",
    "fastify": "^5.8.5"
  },
  "devDependencies": {
    "@quereus/sync-client": "^4.17.0",
    "@types/debug": "^4.1.13",
    "@types/mocha": "^10.0.10",
    "@types/node": "^25.9.3",
    "@types/ws": "^8.18.1",
    "chai": "^6.2.2",
    "mocha": "^11.7.6",
    "rimraf": "^6.1.3",
    "ts-node": "^10.9.2",
    "tsx": "^4.22.4",
    "typescript": "^5.9.3"
  }
}