{
  "name": "@mobx-sentinel/form",
  "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",
  "files": [
    "dist"
  ],
  "dependencies": {
    "mobx": "^6.12.3",
    "uuid": "^11.0.4",
    "@mobx-sentinel/core": "0.2.3"
  },
  "devDependencies": {
    "@types/node": "^22.10.2",
    "@vitest/coverage-v8": "^2.1.8",
    "tsup": "^8.3.5",
    "typescript": "^5.5.0",
    "vitest": "^2.1.8"
  },
  "scripts": {
    "test": "vitest run --coverage",
    "test:dev": "vitest",
    "build": "tsup"
  }
}