{
  "name": "react-bfm",
  "description": "A basic field / form manager for React using hooks",
  "version": "2.0.0",
  "keywords": [
    "react",
    "reactjs",
    "form",
    "input"
  ],
  "license": "MIT",
  "author": "Sebastiaan Vossebeld <sebastiaan@vijfdertien.it> (https://github.com/vijfdertien)",
  "homepage": "https://github.com/vijfdertien/react-bfm",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vijfdertien/react-bfm.git"
  },
  "bugs": {
    "url": "https://github.com/vijfdertien/react-bfm/issues"
  },
  "main": "lib/index.js",
  "unpkg": "dist/react-bfm.js",
  "module": "es/index.js",
  "exports": {
    ".": {
      "types": "./types/index.d.ts",
      "import": "./es/index.js",
      "require": "./lib/index.js",
      "default": "./dist/react-bfm.js"
    }
  },
  "files": [
    "/dist",
    "/lib",
    "/src",
    "/es",
    "/types"
  ],
  "types": "types/index.d.ts",
  "scripts": {
    "build": "bun run build-ts && bun run build-commonjs && bun run build-es && bun run build-umd && bun run build-umd-min",
    "build-ts": "tsc",
    "build-commonjs": "BABEL_ENV=commonjs babel build --out-dir lib",
    "build-es": "babel build --out-dir es",
    "build-umd": "BABEL_ENV=commonjs NODE_ENV=development webpack",
    "build-umd-min": "BABEL_ENV=commonjs NODE_ENV=production webpack",
    "clean": "rimraf lib dist es types",
    "eslint-check": "eslint . --ext .ts,.js",
    "eslint-fix": "eslint --fix .",
    "prepare": "husky",
    "prepublishOnly": "bun run clean && bun run build",
    "prettier-check": "prettier --check .",
    "prettier-fix": "prettier --write .",
    "test": "jest",
    "check": "bun run prettier-check && bun run eslint-check && tsc --noEmit --project tsconfig.check.json",
    "version": "conventional-changelog --config ./changelog-config.js --infile CHANGELOG.md --same-file && prettier --write CHANGELOG.md && git add CHANGELOG.md"
  },
  "dependencies": {
    "@babel/runtime": "^7.22.15"
  },
  "peerDependencies": {
    "react": ">=18.2.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.22.15",
    "@babel/core": "^7.22.17",
    "@babel/eslint-parser": "7.28.6",
    "@babel/plugin-proposal-decorators": "^7.22.15",
    "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
    "@babel/plugin-transform-react-jsx": "^7.22.15",
    "@babel/plugin-transform-runtime": "^7.22.15",
    "@babel/preset-env": "^7.22.15",
    "@babel/preset-typescript": "^7.28.5",
    "@commitlint/cli": "20.4.1",
    "@commitlint/config-conventional": "20.4.1",
    "@eslint/eslintrc": "^3.3.3",
    "@eslint/js": "^10.0.1",
    "@jest/globals": "30.2.0",
    "@testing-library/react-hooks": "^8.0.1",
    "@types/jest": "30.0.0",
    "@types/react": "^18.2.21",
    "@typescript-eslint/eslint-plugin": "8.55.0",
    "@typescript-eslint/parser": "8.55.0",
    "babel-jest": "30.2.0",
    "babel-loader": "^9.1.3",
    "conventional-changelog-cli": "5.0.0",
    "conventional-changelog-conventionalcommits": "9.1.0",
    "eslint": "9.39.2",
    "eslint-config-prettier": "10.1.8",
    "eslint-config-standard": "^17.1.0",
    "eslint-config-standard-jsx": "^11.0.0",
    "eslint-plugin-import": "2.32.0",
    "eslint-plugin-jest": "29.14.0",
    "eslint-plugin-jsx-a11y": "6.10.2",
    "eslint-plugin-n": "17.23.2",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prefer-arrow": "^1.2.3",
    "eslint-plugin-promise": "7.2.1",
    "eslint-plugin-react": "7.37.5",
    "eslint-plugin-react-hooks": "7.0.1",
    "eslint-plugin-redux-reselect": "^1.1.1",
    "eslint-plugin-unicorn": "63.0.0",
    "husky": "9.1.7",
    "jest": "30.2.0",
    "prettier": "^3.0.3",
    "react": "^18.2.0",
    "react-test-renderer": "^18.2.0",
    "rimraf": "^6.1.2",
    "typescript": "^5.2.2",
    "webpack": "^5.88.2",
    "webpack-cli": "6.0.1"
  },
  "directories": {
    "lib": "lib",
    "test": "test"
  }
}
