{
  "name": "@mobx-sentinel/react",
  "description": "A TypeScript library for non-intrusive model enhancement in MobX applications. Provides model change detection, validation, and form integration capabilities while maintaining the purity of domain models.",
  "version": "0.2.3",
  "author": "creasty <yuki@creasty.com>",
  "license": "MIT",
  "homepage": "https://github.com/creasty/mobx-sentinel",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/creasty/mobx-sentinel.git"
  },
  "bugs": {
    "url": "https://github.com/creasty/mobx-sentinel/issues"
  },
  "keywords": [
    "mobx",
    "model",
    "change-detection",
    "validation",
    "form",
    "react"
  ],
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./extension": {
      "types": "./dist/extension.d.ts",
      "import": "./dist/extension.mjs",
      "require": "./dist/extension.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "mobx": "^6.12.3",
    "mobx-react-lite": "^4.0.7",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "@mobx-sentinel/form": "0.2.3"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^6.6.3",
    "@testing-library/react": "^16.1.0",
    "@testing-library/user-event": "^14.5.2",
    "@types/node": "^22.10.2",
    "@types/react": "^19.0.2",
    "@types/react-dom": "^19.0.2",
    "@vitest/coverage-v8": "^2.1.8",
    "jsdom": "^25.0.1",
    "tsup": "^8.3.5",
    "typescript": "^5.5.0",
    "vitest": "^2.1.8"
  },
  "scripts": {
    "test": "vitest run --coverage",
    "test:dev": "vitest",
    "build": "tsup"
  }
}