{
  "name": "yjs-proxy",
  "version": "2.2.0",
  "description": "Proxy-based ergonomics for Yjs (CRDT): use Y.Map and Y.Array like plain JS objects and arrays.",
  "keywords": [
    "yjs",
    "crdt",
    "collaboration",
    "collaborative",
    "shared-state",
    "realtime",
    "proxy",
    "y-map",
    "y-array",
    "typescript",
    "data-structures",
    "state-management"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/xaviergonz/yjs-proxy.git"
  },
  "bugs": {
    "url": "https://github.com/xaviergonz/yjs-proxy/issues"
  },
  "license": "MIT",
  "author": "Javier González Garcés",
  "source": "./src/index.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/types/index.d.ts",
      "script": "./dist/yjs-proxy.umd.js",
      "import": "./dist/yjs-proxy.esm.mjs",
      "require": "./dist/yjs-proxy.umd.js",
      "default": "./dist/yjs-proxy.esm.mjs"
    }
  },
  "esmodule": "./dist/yjs-proxy.esm.js",
  "module": "./dist/yjs-proxy.esm.js",
  "jsnext:main": "./dist/yjs-proxy.esm.js",
  "react-native": "./dist/yjs-proxy.umd.js",
  "umd:main": "./dist/yjs-proxy.umd.js",
  "unpkg": "./dist/yjs-proxy.umd.js",
  "jsdelivr": "./dist/yjs-proxy.umd.js",
  "main": "./dist/yjs-proxy.umd.js",
  "types": "./dist/types/index.d.ts",
  "typings": "./dist/types/index.d.ts",
  "sideEffects": false,
  "files": [
    "src",
    "dist",
    "LICENSE",
    "CHANGELOG.md",
    "README.md",
    "logo.png"
  ],
  "scripts": {
    "quick-build": "tsc",
    "quick-build-tests": "tsc -p test",
    "copy-root-files": "shx cp ../../README.md . && shx cp ../../LICENSE . && shx cp ../../CHANGELOG.md . && shx cp ../../logo.png .",
    "build": "pnpm quick-build && pnpm copy-root-files && shx rm -rf dist && vite build && shx cp dist/yjs-proxy.esm.mjs dist/yjs-proxy.esm.js",
    "test": "vitest run",
    "test:ci": "vitest run --coverage",
    "build-docs": "shx rm -rf api-docs && typedoc --options ./typedocconfig.js src/index.ts"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^4.0.15",
    "shx": "^0.4.0",
    "ts-node": "^10.9.2",
    "typedoc": "^0.28.15",
    "typescript": "^5.9.3",
    "vite": "^7.2.6",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^4.0.15",
    "yjs": "^13.6.27"
  },
  "peerDependencies": {
    "yjs": "^13.0.0"
  },
  "dependencies": {
    "rfdc": "^1.4.1",
    "tslib": "^2.8.1"
  },
  "directories": {
    "test": "test"
  }
}
