{
  "name": "@syncular/server",
  "version": "0.15.48",
  "description": "Syncular server: handleSyncRequest + storage/auth interfaces for the sync protocol",
  "license": "Apache-2.0",
  "author": "Benjamin Kniffler",
  "homepage": "https://syncular.dev",
  "repository": {
    "type": "git",
    "url": "https://github.com/syncular/syncular.git",
    "directory": "packages/server"
  },
  "bugs": {
    "url": "https://github.com/syncular/syncular/issues"
  },
  "keywords": [
    "sync",
    "offline-first",
    "realtime",
    "database",
    "typescript"
  ],
  "type": "module",
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "bun": "./src/index-bun.ts",
      "node": {
        "types": "./dist/index-node.d.ts",
        "default": "./dist/index-node.js"
      },
      "browser": "./dist/index.js",
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./sqlite": {
      "bun": "./src/sqlite-bun.ts",
      "node": {
        "types": "./dist/sqlite-node.d.ts",
        "default": "./dist/sqlite-node.js"
      },
      "types": "./dist/sqlite-node.d.ts"
    },
    "./pglite": {
      "bun": "./src/pg-executor-pglite.ts",
      "browser": "./dist/pg-executor-pglite.js",
      "import": {
        "types": "./dist/pg-executor-pglite.d.ts",
        "default": "./dist/pg-executor-pglite.js"
      }
    }
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "!src/**/*.test.ts",
    "!src/**/*.test.tsx",
    "!dist/**/*.test.js",
    "!dist/**/*.test.d.ts"
  ],
  "scripts": {
    "verify:node": "cd ../.. && bun build ./packages/server/test/sqlite-runtime/verify-node.mjs --target=node --conditions=bun --outfile=./packages/server/.verify-node.built.mjs && node ./packages/server/.verify-node.built.mjs"
  },
  "dependencies": {
    "@syncular/core": "0.15.48"
  },
  "devDependencies": {
    "@electric-sql/pglite": "^0.5.4"
  }
}
