{
  "name": "mobx-easy-form",
  "version": "3.0.0",
  "description": "Simple and performant form library built with MobX",
  "keywords": [
    "mobx",
    "form",
    "easy",
    "react",
    "zod",
    "yup",
    "standard-schema"
  ],
  "homepage": "https://github.com/hrastnik/mobx-easy-form",
  "bugs": {
    "url": "https://github.com/hrastnik/mobx-easy-form/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hrastnik/mobx-easy-form.git"
  },
  "license": "MIT",
  "author": {
    "name": "Mateo Hrastnik",
    "email": "hrastnikmateo@gmail.com"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "oxlint",
    "typecheck": "tsc --noEmit",
    "prepare": "husky",
    "prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build"
  },
  "peerDependencies": {
    "mobx": ">=6.0.0",
    "react": ">=19.0.0"
  },
  "dependencies": {
    "@standard-schema/spec": "^1.1.0"
  },
  "devDependencies": {
    "@testing-library/react": "^16.3.0",
    "@types/react": "^19.2.0",
    "@types/react-dom": "^19.2.0",
    "@vitejs/plugin-react": "^6.0.0",
    "husky": "^9.1.0",
    "jsdom": "^29.0.0",
    "mobx": "^6.15.0",
    "oxlint": "^1.61.0",
    "react": "^19.2.0",
    "react-dom": "^19.2.0",
    "tsdown": "^0.21.0",
    "typescript": "^5.9.0",
    "vitest": "^4.1.0",
    "yup": "^1.7.0",
    "zod": "^4.3.0"
  }
}
