{
  "name": "mobx-bonsai",
  "version": "1.1.1",
  "description": "A fast lightweight alternative to MobX-State-Tree + Y.js two-way binding",
  "keywords": [
    "mobx",
    "mobx-bonsai",
    "Y.js",
    "state management",
    "observable",
    "mobx-state-tree",
    "mobx-keystone"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/xaviergonz/mobx-bonsai.git"
  },
  "bugs": {
    "url": "https://github.com/xaviergonz/mobx-bonsai/issues"
  },
  "homepage": "https://mobx-bonsai.js.org",
  "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/mobx-bonsai.umd.js",
      "import": "./dist/mobx-bonsai.esm.mjs",
      "require": "./dist/mobx-bonsai.umd.js",
      "default": "./dist/mobx-bonsai.esm.mjs"
    }
  },
  "esmodule": "./dist/mobx-bonsai.esm.js",
  "module": "./dist/mobx-bonsai.esm.js",
  "jsnext:main": "./dist/mobx-bonsai.esm.js",
  "react-native": "./dist/mobx-bonsai.umd.js",
  "umd:main": "./dist/mobx-bonsai.umd.js",
  "unpkg": "./dist/mobx-bonsai.umd.js",
  "jsdelivr": "./dist/mobx-bonsai.umd.js",
  "main": "./dist/mobx-bonsai.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": "yarn quick-build && yarn copy-root-files && shx rm -rf dist && vite build && shx cp dist/mobx-bonsai.esm.mjs dist/mobx-bonsai.esm.js",
    "test": "jest",
    "test:ci": "yarn test -i --coverage",
    "build-docs": "shx rm -rf api-docs && typedoc --options ./typedocconfig.js src/index.ts && shx rm -rf ../../apps/site/copy-to-build/api && shx mkdir -p ../../apps/site/copy-to-build/api && shx cp -R ./api-docs/* ../../apps/site/copy-to-build/api"
  },
  "peerDependencies": {
    "mobx": "^6.0.0 || ^5.0.0 || ^4.0.0",
    "yjs": "^13.0.0"
  },
  "peerDependenciesMeta": {
    "yjs": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/deep-freeze": "^0.1.5",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.15.29",
    "jest": "^29.7.0",
    "mobx-v4": "npm:mobx@^4.15.7",
    "mobx-v5": "npm:mobx@^5.15.7",
    "rollup-plugin-typescript2": "^0.36.0",
    "shx": "^0.4.0",
    "spec.ts": "^1.1.3",
    "ts-jest": "^29.3.4",
    "ts-node": "^10.9.2",
    "type-fest": "^4.41.0",
    "typedoc": "^0.28.5",
    "typescript": "^5.8.3",
    "vite": "^6.3.5"
  },
  "dependencies": {
    "deep-freeze": "^0.0.1",
    "fast-deep-equal": "^3.1.3",
    "mitt": "^3.0.1",
    "nanoid": "^3.3.11",
    "tslib": "^2.8.1"
  },
  "directories": {
    "test": "test"
  }
}
