{
  "name": "@powersync/shared-internals",
  "version": "1.1.1",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "description": "Internal helpers used by PowerSync, not meant to be used in other contexts.",
  "type": "module",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "default": "./lib/index.js"
    },
    "./websockets": {
      "types": "./lib/client/sync/stream/WebSocketSupport.d.ts",
      "node": "./dist/websockets.node.mjs",
      "default": "./dist/websockets.mjs"
    },
    "./internal/sync_protocol": {
      "types": "./legacy/sync_protocol.d.ts"
    }
  },
  "author": "PowerSync",
  "license": "Apache-2.0",
  "files": [
    "lib",
    "dist",
    "src",
    "legacy"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/powersync-ja/powersync-js.git"
  },
  "bugs": {
    "url": "https://github.com/powersync-ja/powersync-js/issues"
  },
  "homepage": "https://docs.powersync.com",
  "peerDependencies": {
    "@powersync/common": "2.0.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^29.0.0",
    "@rollup/plugin-inject": "^5.0.5",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@types/node": "^24.0.0",
    "@types/uuid": "^9.0.6",
    "buffer": "^6.0.3",
    "cross-fetch": "^4.1.0",
    "estree-walker": "^3.0.3",
    "magic-string": "^0.30.21",
    "rollup": "^4.52.5",
    "rollup-plugin-dts": "^6.2.1",
    "rsocket-core": "1.0.0-alpha.3",
    "rsocket-websocket-client": "1.0.0-alpha.3"
  },
  "scripts": {
    "build": "tsc -b && rollup -c rollup.config.mjs",
    "build:prod": "tsc -b && rollup -c rollup.config.mjs",
    "clean": "rm -rf lib dist tsconfig.tsbuildinfo",
    "test": "vitest",
    "test:exports": "attw --pack . --profile node16 --exclude-entrypoints internal/sync_protocol --ignore-rules cjs-resolves-to-esm",
    "postversion": "node tool/update_version.js"
  }
}