{
  "name": "@cookbook/pathkit",
  "version": "1.0.1",
  "description": "A lightweight route pattern parser, matcher and compiler for TypeScript.",
  "type": "module",
  "license": "MIT",
  "author": "",
  "homepage": "https://github.com/the-cookbook/pathkit#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/the-cookbook/pathkit.git"
  },
  "bugs": {
    "url": "https://github.com/the-cookbook/pathkit/issues"
  },
  "sideEffects": false,
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./compile": {
      "types": "./dist/compile.d.ts",
      "import": "./dist/compile.js",
      "require": "./dist/compile.cjs"
    },
    "./match": {
      "types": "./dist/match.d.ts",
      "import": "./dist/match.js",
      "require": "./dist/match.cjs"
    },
    "./tokenize": {
      "types": "./dist/tokenize.d.ts",
      "import": "./dist/tokenize.js",
      "require": "./dist/tokenize.cjs"
    },
    "./validate-route": {
      "types": "./dist/validate-route.d.ts",
      "import": "./dist/validate-route.js",
      "require": "./dist/validate-route.cjs"
    },
    "./constraints": {
      "types": "./dist/constraints/index.d.ts",
      "import": "./dist/constraints/index.js",
      "require": "./dist/constraints/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "keywords": [
    "routing",
    "router",
    "route",
    "route-pattern",
    "route-matching",
    "route-compiler",
    "route-parser",
    "route-tokenizer",
    "route-validation",
    "route-constraints",
    "path-matching",
    "path-parser",
    "path-compiler",
    "url-routing",
    "url-pattern",
    "wildcard-routes",
    "optional-parameters",
    "typescript",
    "typescript-routing",
    "path-to-regexp"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@changesets/cli": "^2.31.0",
    "@eslint/js": "^9.39.1",
    "@rollup/plugin-node-resolve": "^15.3.1",
    "@rollup/plugin-typescript": "^12.1.4",
    "@types/node": "^20.19.25",
    "@vitest/coverage-v8": "^3.2.4",
    "eslint": "^9.39.1",
    "eslint-config-prettier": "^10.1.8",
    "husky": "^9.1.7",
    "prettier": "^3.6.2",
    "rimraf": "^6.1.0",
    "rollup": "^4.53.3",
    "rollup-plugin-dts": "^6.2.3",
    "tslib": "^2.8.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.46.4",
    "vitest": "^3.2.4"
  },
  "scripts": {
    "clean": "rimraf dist coverage",
    "typecheck": "tsc --noEmit",
    "build": "rimraf dist && rollup -c && rimraf dist/types",
    "test": "vitest run",
    "test:watch": "vitest",
    "coverage": "vitest run --coverage",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "playground": "pnpm build && pnpm --filter pathkit-playground start",
    "playground:typecheck": "pnpm --filter pathkit-playground typecheck",
    "changeset": "changeset",
    "version-package": "changeset version",
    "release:check": "pnpm run typecheck && pnpm test && pnpm playground && pnpm run build",
    "release:publish": "changeset publish",
    "release": "pnpm run release:check && pnpm run release:publish"
  }
}