{
  "name": "react-rover",
  "version": "0.4.0",
  "scripts": {
    "dev": "vite",
    "build": "tsc && vite build && yarn build:types",
    "serve": "vite preview",
    "prepare": "husky install",
    "lint:prettier": "prettier --loglevel warn --check .",
    "lint:eslint": "eslint --max-warnings 0 .",
    "lint:ts": "tsc --noEmit --pretty",
    "lint:css": "stylelint --allow-empty-input 'src/**/*.css'",
    "lint": "npm-run-all --parallel 'lint:*'",
    "build:types": "rimraf types-temp && tsc --pretty --emitDeclarationOnly -p tsconfig.types.json && rollup --config rollupTypes.config.cjs",
    "storybook": "start-storybook -p 6006",
    "test:e2e": "yarn dlx playwright test --workers=1",
    "test": "NODE_OPTIONS=--experimental-vm-modules npx jest --config=jest.config.cjs",
    "test:watch": "NODE_OPTIONS=--experimental-vm-modules npx jest --config=jest.config.cjs --coverage=false --watch",
    "build:storybook": "build-storybook"
  },
  "devDependencies": {
    "@babel/core": "^7.16.0",
    "@babel/preset-env": "^7.16.4",
    "@babel/preset-react": "^7.16.0",
    "@babel/preset-typescript": "^7.16.0",
    "@emotion/react": "^11.7.0",
    "@emotion/styled": "^11.6.0",
    "@mdx-js/react": "^1.6.22",
    "@playwright/test": "1.17.0",
    "@rollup/plugin-alias": "^3.1.8",
    "@storybook/addon-actions": "^6.4.3",
    "@storybook/addon-docs": "^6.4.3",
    "@storybook/addon-essentials": "^6.4.3",
    "@storybook/addon-links": "^6.4.3",
    "@storybook/react": "^6.4.3",
    "@testing-library/jest-dom": "^5.15.1",
    "@testing-library/react": "^12.1.2",
    "@types/babel__core": "^7",
    "@types/babel__preset-env": "^7",
    "@types/eslint": "^8",
    "@types/jest": "^27.0.3",
    "@types/mdx-js__react": "^1",
    "@types/merge-refs": "^1.0.0",
    "@types/node": "^16.11.11",
    "@types/prettier": "^2",
    "@types/react": "^17.0.0",
    "@types/react-dom": "^17.0.0",
    "@types/rimraf": "^3",
    "@types/testing-library__jest-dom": "^5",
    "@typescript-eslint/eslint-plugin": "^5.5.0",
    "@typescript-eslint/parser": "^5.5.0",
    "@vitejs/plugin-react": "^1.0.0",
    "babel-jest": "^27.4.2",
    "babel-loader": "^8.2.3",
    "babel-preset-vite": "^1.0.4",
    "eslint": "^8.3.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-import-resolver-node": "^0.3.6",
    "eslint-plugin-import": "^2.25.3",
    "eslint-plugin-jest": "^25.3.0",
    "eslint-plugin-jsx-a11y": "^6.5.1",
    "eslint-plugin-react": "^7.27.1",
    "eslint-plugin-react-hooks": "^4.3.0",
    "eslint-plugin-simple-import-sort": "^7.0.0",
    "eslint-plugin-storybook": "^0.5.1",
    "eslint-plugin-testing-library": "^5.0.1",
    "eslint-plugin-unicorn": "^39.0.0",
    "husky": "^7.0.4",
    "identity-obj-proxy": "^3.0.0",
    "jest": "^27.4.2",
    "jest-svg-transformer": "^1.0.0",
    "lint-staged": "^12.1.2",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.5.0",
    "pretty-quick": "^3.1.2",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-icons": "^4.3.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.60.2",
    "rollup-plugin-dts": "^4.0.1",
    "storybook-builder-vite": "^0.1.10",
    "stylelint": "^14.1.0",
    "stylelint-config-standard": "^24.0.0",
    "typescript": "^4.3.2",
    "vite": "^2.6.4"
  },
  "packageManager": "yarn@3.1.1",
  "license": "ISC",
  "peerDependencies": {
    "react": "^16.8.0 || ^17.0.0",
    "react-dom": "^16.8.0 || ^17.0.0"
  },
  "author": "Steve Johns",
  "files": [
    "dist"
  ],
  "main": "./dist/react-rover.umd.js",
  "module": "./dist/react-rover.es.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/react-rover.es.js",
      "require": "./dist/react-rover.umd.js"
    }
  },
  "description": "A roving tabindex hook for React",
  "keywords": [
    "roving",
    "tabindex",
    "react",
    "a11y"
  ],
  "homepage": "https://github.com/stevejay/react-rover#readme",
  "bugs": {
    "url": "https://github.com/stevejay/react-rover/issues"
  },
  "repository": "github:stevejay/react-rover",
  "sideEffects": false,
  "dependencies": {
    "merge-refs": "^1.0.0"
  }
}