{
  "name": "loro-mirror",
  "version": "2.2.0",
  "description": "Type-safe state management synchronized with Loro CRDT via a declarative schema and bidirectional mirroring.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "src"
  ],
  "keywords": [
    "loro",
    "loro-crdt",
    "crdt",
    "state-management",
    "synchronization",
    "sync"
  ],
  "author": "Loro Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/loro-dev/loro-mirror",
    "directory": "packages/core"
  },
  "dependencies": {
    "immer": "^10.0.3"
  },
  "peerDependencies": {
    "loro-crdt": "^1.13.3"
  },
  "devDependencies": {
    "@types/node": "^20.10.5",
    "typescript": "^5.3.3"
  },
  "scripts": {
    "build": "tsc -p .",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
    "bench:ephemeral": "pnpm build && node --expose-gc ./scripts/ephemeral-bench.mjs"
  }
}