{
  "name": "@powersync/web",
  "version": "1.37.2",
  "description": "PowerSync Web SDK",
  "main": "lib/src/index.js",
  "module": "lib/src/index.js",
  "type": "module",
  "types": "lib/src/index.d.ts",
  "bin": {
    "powersync-web": "bin/powersync.cjs"
  },
  "files": [
    "bin",
    "lib",
    "!lib/tests",
    "dist",
    "src"
  ],
  "exports": {
    ".": {
      "types": "./lib/src/index.d.ts",
      "default": "./lib/src/index.js"
    },
    "./umd": {
      "types": "./lib/src/index.d.ts",
      "default": "./dist/index.umd.js"
    },
    "./umd/worker/db": {
      "types": "./lib/src/index.d.ts",
      "import": "./dist/worker/WASQLiteDB.umd.js",
      "require": "./dist/worker/WASQLiteDB.umd.js"
    },
    "./umd/worker/sync": {
      "types": "./lib/src/index.d.ts",
      "import": "./dist/worker/SharedSyncImplementation.umd.js",
      "require": "./dist/worker/SharedSyncImplementation.umd.js"
    }
  },
  "repository": "https://github.com/powersync-ja/powersync-js",
  "bugs": {
    "url": "https://github.com/powersync-ja/powersync-js/issues"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "homepage": "https://docs.powersync.com",
  "keywords": [
    "data sync",
    "offline-first",
    "sqlite",
    "real-time data stream",
    "live data"
  ],
  "author": "PowerSync",
  "license": "Apache-2.0",
  "peerDependencies": {
    "@journeyapps/wa-sqlite": "^1.5.0",
    "@powersync/common": "^1.52.0"
  },
  "dependencies": {
    "bson": "^6.10.4",
    "comlink": "^4.4.2",
    "commander": "^12.1.0",
    "@powersync/common": "1.52.0"
  },
  "devDependencies": {
    "@journeyapps/wa-sqlite": "^1.5.0",
    "@types/uuid": "^9.0.6",
    "crypto-browserify": "^3.12.0",
    "glob": "^11.0.0",
    "p-defer": "^4.0.1",
    "source-map-loader": "^5.0.0",
    "stream-browserify": "^3.0.0",
    "terser-webpack-plugin": "^5.3.9",
    "uuid": "^11.1.0",
    "vite": "^7.3.1",
    "vm-browserify": "^1.1.2",
    "webpack": "^5.90.1",
    "webpack-cli": "^5.1.4",
    "webpack-node-externals": "^3.0.0"
  },
  "scripts": {
    "build:tsc": "tsc --build",
    "build:webpack-main": "webpack",
    "build:webpack-workers": "webpack --config webpack.workers.config.js",
    "build": "pnpm run build:tsc && pnpm run build:webpack-main && pnpm run build:webpack-workers",
    "build:prod": "pnpm run build:tsc --sourceMap false && pnpm run build:webpack-main && pnpm run build:webpack-workers",
    "clean": "rm -rf lib dist tsconfig.tsbuildinfo",
    "watch": "tsc --build -w",
    "test": "pnpm build && vitest",
    "test:exports": "attw --pack . --entrypoints . --profile=esm-only "
  }
}