{
  "name": "y-dexie",
  "version": "4.2.2",
  "description": "Integration of Y.js with Dexie",
  "type": "module",
  "module": "dist/y-dexie.js",
  "homepage": "https://dexie.org",
  "exports": {
    ".": {
      "import": "./dist/y-dexie.js",
      "require": null
    }
  },
  "types": "dist/y-dexie.d.ts",
  "engines": {
    "node": ">=18"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dexie/Dexie.js.git"
  },
  "just-build": {
    "default": [
      "rollup -c tools/build-configs/rollup.config.mjs"
    ],
    "test": [
      "just-build test-unit"
    ],
    "test-unit": [
      "tsc -p test [--watch 'Watching for file changes.']",
      "rollup -c tools/build-configs/rollup.test.unit.config.js"
    ]
  },
  "author": "david.fahlander@gmail.com",
  "license": "Apache-2.0",
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.7",
    "@rollup/plugin-node-resolve": "^15.2.3",
    "@rollup/plugin-replace": "^5.0.4",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^11.1.5",
    "@types/node": "^18.11.18",
    "dexie": ">=4.2.0-alpha.1 <5.0.0",
    "dreambase-library": "^1.0.26",
    "just-build": "*",
    "karma": "*",
    "karma-chrome-launcher": "*",
    "karma-firefox-launcher": "*",
    "karma-qunit": "*",
    "lib0": "^0.2.97",
    "rollup": "^4.1.4",
    "terser": "^5.20.0",
    "tslib": "*",
    "typescript": "^5.8.3",
    "y-protocols": "^1.0.6",
    "yjs": "^13.6.27"
  },
  "peerDependencies": {
    "dexie": ">=4.2.0-alpha.1 <5.0.0",
    "yjs": "^13.6.27"
  },
  "scripts": {
    "test": "just-build test && pnpm run test-unit",
    "test-unit": "karma start test/unit/karma.conf.cjs --single-run",
    "test:ltcloud": "cross-env LAMBDATEST=true pnpm run test:ltTunnel & sleep 10 && pnpm run test; UNIT_STATUS=$?; kill $(cat tunnel.pid); exit $UNIT_STATUS",
    "test:ltTunnel": "node ../../test/lt-local",
    "build": "rollup -c tools/build-configs/rollup.config.mjs",
    "watch": "rollup -c tools/build-configs/rollup.config.mjs --watch",
    "clean": "rm -rf tools/tmp dist test/unit/bundle.*"
  }
}