{
  "name": "@conform-to/dom",
  "description": "A set of opinionated helpers built on top of the Constraint Validation API",
  "homepage": "https://conform.guide",
  "license": "MIT",
  "version": "1.4.0",
  "main": "index.js",
  "module": "index.mjs",
  "types": "index.d.ts",
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "module": "./index.mjs",
      "import": "./index.mjs",
      "require": "./index.js",
      "default": "./index.mjs"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/edmundhung/conform",
    "directory": "packages/conform-dom"
  },
  "author": {
    "name": "Edmund Hung",
    "email": "me@edmund.dev",
    "url": "https://edmund.dev"
  },
  "bugs": {
    "url": "https://github.com/edmundhung/conform/issues"
  },
  "keywords": [
    "constraint-validation",
    "form",
    "form-validation",
    "html",
    "progressive-enhancement",
    "validation",
    "dom"
  ],
  "sideEffects": false,
  "devDependencies": {
    "@babel/core": "^7.17.8",
    "@babel/preset-env": "^7.20.2",
    "@babel/preset-typescript": "^7.20.2",
    "@rollup/plugin-babel": "^5.3.1",
    "@rollup/plugin-node-resolve": "^13.3.0",
    "rollup-plugin-copy": "^3.4.0",
    "rollup": "^2.79.1"
  },
  "scripts": {
    "build:js": "rollup -c",
    "build:ts": "tsc",
    "build": "pnpm run \"/^build:.*/\"",
    "dev:js": "pnpm run build:js --watch",
    "dev:ts": "pnpm run build:ts --watch",
    "dev": "pnpm run \"/^dev:.*/\""
  }
}