{
  "name": "react-typesafe-routes",
  "version": "2.0.0-alpha.0",
  "description": "The last routing library you will ever need in your react projects - Completely typesafe and easy to use.",
  "keywords": [
    "typesafe-routing",
    "routing",
    "route-options",
    "route-middleware",
    "react-router",
    "react",
    "react-router-dom"
  ],
  "license": "MIT",
  "author": "Nicolas Schlecker (hi@nicolasschlecker.de)",
  "main": "dist/index.js",
  "module": "dist/react-typesafe-routes.esm.js",
  "typings": "dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "analyze": "size-limit --why",
    "build": "tsdx build",
    "lint": "tsdx lint",
    "prepare": "tsdx build",
    "doc:build": "typedoc src/index.ts",
    "doc:deploy": "yarn doc:build && gh-pages -d docs",
    "size": "size-limit",
    "start": "tsdx watch",
    "test": "tsdx test"
  },
  "prettier": {
    "printWidth": 80,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "resolutions": {
    "**/typescript": "^4.1.6"
  },
  "devDependencies": {
    "@size-limit/preset-small-lib": "^8.1.0",
    "@types/qs": "^6.9.7",
    "@types/react": "^18.0.25",
    "@types/react-dom": "^18.0.8",
    "@typescript-eslint/eslint-plugin": "^5.42.1",
    "@typescript-eslint/parser": "^5.42.1",
    "eslint": "^8.27.0",
    "gh-pages": "^4.0.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-router-dom": "^6.4.2",
    "size-limit": "^8.1.0",
    "tsdx": "^0.14.1",
    "tslib": "^2.4.1",
    "typedoc": "^0.23.20",
    "typescript": "^4.8.4"
  },
  "peerDependencies": {
    "react": ">=18",
    "react-dom": ">=18",
    "react-router-dom": "^6.4.2",
    "typescript": "^4.1.6"
  },
  "engines": {
    "node": ">=14"
  },
  "size-limit": [
    {
      "path": "dist/react-typesafe-routes.cjs.production.min.js",
      "limit": "15 KB"
    },
    {
      "path": "dist/react-typesafe-routes.esm.js",
      "limit": "15 KB"
    }
  ],
  "dependencies": {
    "qs": "^6.11.0"
  }
}
