{
  "name": "react-cool-form",
  "version": "0.4.1",
  "description": "React hooks for forms state and validation, less code more performant.",
  "license": "MIT",
  "homepage": "https://react-cool-form.netlify.app",
  "repository": "https://github.com/wellyshen/react-cool-form",
  "bugs": "https://github.com/wellyshen/react-cool-form/issues",
  "keywords": [
    "react",
    "hooks",
    "form",
    "forms",
    "form-builder",
    "form-state",
    "form-validation",
    "state",
    "state-management",
    "validation",
    "uncontrolled",
    "controlled",
    "arrays",
    "lists",
    "dx",
    "ux",
    "performance",
    "react-hooks",
    "asynchronous",
    "typescript"
  ],
  "author": "Welly Shen <hivoid19@gmail.com> (https://github.com/wellyshen)",
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "umd:main": "dist/index.umd.production.min.js",
  "unpkg": "dist/index.umd.production.min.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "link-pkg": "npm link app/node_modules/react && yarn link",
    "start": "yarn clean:build && yarn copy:type && rollup -c scripts/rollup/config.js -w",
    "build": "yarn clean:build && yarn clean:size && yarn copy && rollup -c scripts/rollup/config.js --environment BUILD:production",
    "lint": "run-s lint:*",
    "lint:code": "eslint --fix . --ext .js,.ts,.tsx",
    "lint:type": "tsc",
    "lint:format": "prettier -w . -u --loglevel silent",
    "test": "jest --config scripts/jest/config.js",
    "test:watch": "yarn test --watch",
    "test:cov": "yarn clean:cov && yarn test --coverage",
    "size": "yarn build && bundlesize",
    "clean": "run-p clean:*",
    "clean:build": "rimraf dist",
    "clean:size": "rimraf .size-snapshot.json",
    "clean:cov": "rimraf coverage",
    "copy": "run-p copy:*",
    "copy:cjs": "cpy scripts/rollup/cjsEntryFile.js dist --rename=index.js",
    "copy:type": "cpy src/types/react-cool-form.d.ts dist --rename=index.d.ts",
    "release": "yarn build && changeset publish",
    "prepare": "husky install"
  },
  "lint-staged": {
    "*.{js,ts,tsx}": "eslint --fix",
    "**/*": "prettier -w -u"
  },
  "dependencies": {
    "@babel/runtime": "^7.14.8",
    "dequal": "^2.0.2"
  },
  "devDependencies": {
    "@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
    "@babel/core": "^7.14.8",
    "@babel/plugin-transform-runtime": "^7.14.5",
    "@babel/preset-env": "^7.14.8",
    "@babel/preset-react": "^7.14.5",
    "@babel/preset-typescript": "^7.14.5",
    "@changesets/changelog-github": "^0.4.0",
    "@changesets/cli": "^2.16.0",
    "@rollup/plugin-babel": "^5.3.0",
    "@rollup/plugin-commonjs": "^19.0.1",
    "@rollup/plugin-node-resolve": "^13.0.2",
    "@rollup/plugin-replace": "^3.0.0",
    "@testing-library/jest-dom": "^5.14.1",
    "@testing-library/react": "^12.0.0",
    "@testing-library/react-hooks": "^7.0.1",
    "@testing-library/user-event": "^13.2.0",
    "@types/jest": "^26.0.24",
    "@types/react": "^17.0.14",
    "bundlesize2": "^0.0.28",
    "cpy-cli": "^3.1.1",
    "eslint": "^7.2.0",
    "eslint-config-welly": "^1.11.4",
    "husky": "^7.0.1",
    "jest": "^27.0.6",
    "lint-staged": "^11.1.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.3.2",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-test-renderer": "^17.0.2",
    "rimraf": "^3.0.2",
    "rollup": "^2.53.3",
    "rollup-plugin-size-snapshot": "^0.12.0",
    "rollup-plugin-terser": "^7.0.2",
    "ts-jest": "^27.0.4",
    "typescript": "^4.3.5"
  },
  "peerDependencies": {
    "react": ">= 16.8.0"
  }
}
