{
  "name": "react-joyride-next",
  "version": "2.5.5",
  "description": "Create guided tours for your apps",
  "author": "cyrilszq <cyrilszq@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Cyrilszq/react-joyride.git"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "homepage": "https://react-joyride.com/",
  "keywords": [
    "react",
    "react-component",
    "tooltips",
    "joyride",
    "walkthroughs",
    "tour"
  ],
  "license": "MIT",
  "main": "lib/index.js",
  "module": "es/index.js",
  "files": [
    "es",
    "lib",
    "src",
    "types/*.ts"
  ],
  "types": "./types/index.d.ts",
  "peerDependencies": {
    "react": "15 - 18",
    "react-dom": "15 - 18"
  },
  "dependencies": {
    "deepmerge": "^4.2.2",
    "exenv": "^1.2.2",
    "is-lite": "^0.9.2",
    "prop-types": "^15.8.1",
    "react-floater-joyride": "^0.7.7",
    "react-is": "^16.13.1",
    "scroll": "^3.0.1",
    "scrollparent": "^2.0.1",
    "tree-changes": "^0.9.2"
  },
  "devDependencies": {
    "@babel/core": "^7.19.1",
    "@babel/eslint-parser": "^7.19.1",
    "@babel/plugin-proposal-class-properties": "^7.18.6",
    "@babel/plugin-proposal-decorators": "^7.19.1",
    "@babel/plugin-proposal-do-expressions": "^7.18.6",
    "@babel/plugin-proposal-export-default-from": "^7.18.10",
    "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
    "@babel/plugin-proposal-function-sent": "^7.18.6",
    "@babel/plugin-proposal-json-strings": "^7.18.6",
    "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9",
    "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
    "@babel/plugin-proposal-numeric-separator": "^7.18.6",
    "@babel/plugin-proposal-optional-chaining": "^7.18.9",
    "@babel/plugin-proposal-pipeline-operator": "^7.18.9",
    "@babel/plugin-proposal-throw-expressions": "^7.18.6",
    "@babel/plugin-syntax-dynamic-import": "^7.8.3",
    "@babel/plugin-syntax-import-meta": "^7.10.4",
    "@babel/plugin-transform-flow-strip-types": "^7.19.0",
    "@babel/plugin-transform-runtime": "^7.19.1",
    "@babel/preset-env": "^7.19.1",
    "@babel/preset-flow": "^7.18.6",
    "@babel/preset-react": "^7.18.6",
    "@size-limit/preset-big-lib": "^8.1.0",
    "@types/react": "^17.0.47",
    "@types/react-dom": "^17.0.11",
    "babel-core": "^7.0.0-bridge.0",
    "babel-jest": "^29.0.3",
    "babel-plugin-array-includes": "^2.0.3",
    "babel-plugin-jsx-remove-data-test-id": "^3.0.0",
    "babel-plugin-transform-node-env-inline": "^0.4.3",
    "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
    "caniuse-lite": "^1.0.30001405",
    "cross-env": "^7.0.3",
    "dtslint": "^4.2.1",
    "enzyme": "^3.11.0",
    "enzyme-adapter-react-16": "^1.15.6",
    "eslint": "8.23.1",
    "eslint-config-airbnb": "^19.0.4",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-babel": "^5.3.1",
    "eslint-plugin-flowtype": "^8.0.3",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-jsx-a11y": "^6.6.1",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-react": "^7.31.8",
    "eslint-plugin-react-hooks": "^4.6.0",
    "flow-bin": "^0.110.1",
    "husky": "^8.0.1",
    "is-ci-cli": "^2.2.0",
    "jest": "^29.0.3",
    "jest-environment-jsdom": "^29.0.3",
    "jest-enzyme": "^7.1.2",
    "jest-extended": "^3.1.0",
    "jest-watch-typeahead": "^2.2.0",
    "lint-staged": "^13.0.3",
    "prettier": "^2.7.1",
    "prop-types": "^15.8.1",
    "react": "^16.14.0",
    "react-dom": "^16.14.0",
    "repo-tools": "^0.2.2",
    "rimraf": "^3.0.2",
    "rollup": "^2.79.0",
    "rollup-plugin-babel": "^4.3.3",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "size-limit": "^8.1.0",
    "typescript": "^4.8.3"
  },
  "scripts": {
    "build": " npm run clean && npm run build:scripts",
    "build:scripts": "cross-env NODE_ENV=production rollup -c",
    "watch": "rollup -cw",
    "clean": "rimraf es && rimraf lib",
    "lint": "eslint --ext .js,.jsx src test",
    "test": "is-ci \"test:coverage\" \"test:watch\"",
    "test:coverage": "jest --bail --coverage",
    "test:watch": "jest --watchAll --verbose",
    "format": "prettier \"**/*.{js,jsx,ts,tsx}\" --write",
    "validate": "npm run lint && npm run test:coverage && flow && npm run build && npm run size",
    "size": "size-limit",
    "prepublishOnly": "npm run validate"
  },
  "size-limit": [
    {
      "name": "lib",
      "path": "./lib/index.js",
      "limit": "60 kB"
    },
    {
      "name": "esm",
      "path": "./es/index.js",
      "limit": "60 kB"
    }
  ],
  "lint-staged": {
    "*.js?(x)": [
      "eslint --fix",
      "jest --findRelatedTests"
    ],
    "*.(css|graphql|js|json|jsx|less|md|mdx|scss|ts|tsx|yaml|yml)": [
      "prettier --write",
      "git add"
    ]
  }
}
