{
  "name": "@chubbyts/chubbyts-framework-router-path-to-regexp",
  "type": "module",
  "version": "3.2.1",
  "description": "Path-to-regex routing implementation for chubbyts-framework.",
  "keywords": [
    "chubbyts",
    "micro framework",
    "router",
    "psr-15"
  ],
  "author": "Dominik Zogg",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "chubbyts/chubbyts-framework-router-path-to-regexp"
  },
  "prettier": {
    "printWidth": 120,
    "tabWidth": 2,
    "singleQuote": true,
    "trailingComma": "all"
  },
  "files": [
    "dist"
  ],
  "exports": {
    "./*": {
      "types": "./*.d.ts",
      "import": "./*.js",
      "default": "./*.js"
    }
  },
  "engines": {
    "node": ">=22"
  },
  "dependencies": {
    "@chubbyts/chubbyts-framework": "^3.2.0",
    "@chubbyts/chubbyts-http-error": "^3.4.0",
    "@chubbyts/chubbyts-undici-server": "1.2.0",
    "path-to-regexp": "^8.4.2"
  },
  "devDependencies": {
    "@chubbyts/chubbyts-function-mock": "^2.3.0",
    "@chubbyts/chubbyts-oxlint": "^1.0.0",
    "@stryker-mutator/core": "^9.6.1",
    "@stryker-mutator/vitest-runner": "^9.6.1",
    "@types/node": "^26.1.2",
    "@vitest/coverage-v8": "^4.1.10",
    "oxlint": "^1.76.0",
    "prettier": "^3.9.6",
    "typedoc": "^0.28.20",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rm -Rf dist && tsc",
    "cs-fix": "prettier --write src tests",
    "cs": "prettier --check src tests",
    "infection": "stryker run",
    "lint-fix": "oxlint --fix src tests vitest.config.ts",
    "lint": "oxlint src tests vitest.config.ts",
    "test": "vitest",
    "typedoc": "rm -Rf docs && typedoc"
  }
}