{
  "name": "final-form",
  "version": "5.0.1",
  "description": "🏁 Framework agnostic, high performance, subscription-based form state management",
  "main": "dist/final-form.cjs.js",
  "jsnext:main": "dist/final-form.es.js",
  "module": "dist/final-form.es.js",
  "typings": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "start": "nps",
    "test": "NODE_ENV=test NODE_OPTIONS=--unhandled-rejections=strict jest --coverage",
    "precommit": "lint-staged && npm start validate",
    "prepare": "lint-staged && npm start validate"
  },
  "author": "Erik Rasmussen <rasmussenerik@gmail.com> (http://github.com/erikras)",
  "license": "MIT",
  "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/final-form"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/final-form/final-form.git"
  },
  "bugs": {
    "url": "https://github.com/final-form/final-form/issues"
  },
  "homepage": "https://github.com/final-form/final-form#readme",
  "devDependencies": {
    "@babel/core": "^7.27.1",
    "@babel/plugin-syntax-dynamic-import": "^7.8.3",
    "@babel/plugin-syntax-import-meta": "^7.10.4",
    "@babel/plugin-transform-runtime": "^7.27.1",
    "@babel/preset-env": "^7.27.2",
    "@babel/preset-typescript": "^7.27.1",
    "@rollup/plugin-babel": "^6.0.4",
    "@rollup/plugin-commonjs": "^28.0.3",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^12.1.2",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.15.21",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "babel-core": "^7.0.0-bridge.0",
    "babel-jest": "^29.7.0",
    "doctoc": "^2.2.1",
    "eslint": "^8.57.0",
    "eslint-config-react-app": "^7.0.1",
    "eslint-plugin-babel": "^5.3.1",
    "eslint-plugin-import": "^2.24.2",
    "eslint-plugin-jsx-a11y": "^6.4.1",
    "eslint-plugin-react": "^7.26.0",
    "eslint-plugin-react-hooks": "^4.2.0",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "lint-staged": "^16.0.0",
    "nps": "^5.10.0",
    "nps-utils": "^1.7.0",
    "prettier": "^3.5.3",
    "prettier-eslint-cli": "^8.0.1",
    "rollup": "^4.41.1",
    "rollup-plugin-json": "^4.0.0",
    "rollup-plugin-replace": "^2.2.0",
    "tslint": "^6.1.3",
    "typescript": "^5.8.3",
    "@size-limit/preset-small-lib": "^11.1.6",
    "size-limit": "^11.1.6"
  },
  "lint-staged": {
    "*.{js*,ts*,json,md,css}": [
      "prettier --write",
      "git add"
    ]
  },
  "jest": {
    "testEnvironment": "node",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/dist/"
    ],
    "testMatch": [
      "**/__tests__/**/*.[jt]s?(x)",
      "**/?(*.)+(spec|test).[jt]s?(x)"
    ],
    "transform": {
      "^.+\\.tsx?$": "babel-jest",
      "^.+\\.jsx?$": "babel-jest"
    }
  },
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@babel/runtime": "^7.10.0"
  },
  "resolutions": {
    "trim-newlines": "^3.0.1",
    "axios": "^1.8.2",
    "cross-spawn": "^6.0.6"
  },
  "size-limit": [
    {
      "path": "dist/final-form.umd.min.js",
      "limit": "7kB"
    },
    {
      "path": "dist/final-form.umd.js",
      "limit": "7kB"
    },
    {
      "path": "dist/final-form.es.js",
      "limit": "6.52kB"
    },
    {
      "path": "dist/final-form.cjs.js",
      "limit": "6.63kB"
    }
  ],
  "types": "dist/index.d.ts"
}