{
  "name": "react-easy-router",
  "version": "2.2.0",
  "description": "The simplest way to add routing to your React app",
  "type": "module",
  "source": "src/index.ts",
  "exports": {
    "require": "./dist/index.cjs",
    "default": "./dist/index.modern.js"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.module.js",
  "unpkg": "./dist/index.umd.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "src",
    "LICENSE.md",
    "README.md",
    "CHANGELOGS.md"
  ],
  "scripts": {
    "build": "rm -rf ./dist && microbundle --tsconfig ./tsconfig.json --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react",
    "dev": "microbundle watch",
    "prepare": "husky install",
    "lint": "eslint src test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yousufkalim/react-easy-router.git"
  },
  "keywords": [
    "react",
    "routing",
    "router",
    "react-router",
    "react-router-dom",
    "simple-routing",
    "next"
  ],
  "author": "Yousuf Kalim <yousufkalim@outlook.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/yousufkalim/react-easy-router/issues"
  },
  "homepage": "https://github.com/yousufkalim/react-easy-router#readme",
  "devDependencies": {
    "@commitlint/cli": "^17.1.2",
    "@types/node": "^18.11.18",
    "@types/react": "^18.0.26",
    "@types/react-dom": "^18.0.10",
    "@types/react-router-dom": "^5.3.3",
    "@typescript-eslint/eslint-plugin": "^5.0.0",
    "commitlint-config-non-conventional": "^1.0.1",
    "eslint": "^8.0.1",
    "eslint-config-prettier": "^8.5.0",
    "eslint-config-standard-with-typescript": "^24.0.0",
    "eslint-plugin-import": "^2.25.2",
    "eslint-plugin-n": "^15.0.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-promise": "^6.0.0",
    "eslint-plugin-react": "^7.31.11",
    "husky": "^8.0.0",
    "jest": "^29.3.1",
    "lint-staged": "^13.0.3",
    "microbundle": "^0.15.1",
    "prettier": "^2.7.1",
    "pretty-quick": "^3.1.3",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-router-dom": "^6.6.1",
    "react-scripts": "^5.0.1",
    "typescript": "*"
  },
  "peerDependencies": {
    "react": ">=16.8",
    "react-dom": ">=16.8",
    "react-router-dom": ">=6.4.0"
  }
}
