{
  "name": "@remix-run/route-pattern",
  "version": "0.22.1",
  "description": "Match and generate URLs with strong typing",
  "contributors": [
    "Michael Jackson <mjijackson@gmail.com>",
    "Pedro Cattori <pcattori@gmail.com>"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/remix-run/remix.git",
    "directory": "packages/route-pattern"
  },
  "homepage": "https://github.com/remix-run/remix/tree/main/packages/route-pattern#readme",
  "files": [
    "LICENSE",
    "README.md",
    "dist",
    "src",
    "!src/**/*.test.ts"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/route-pattern.d.ts",
      "default": "./dist/route-pattern.js"
    },
    "./href": {
      "types": "./dist/href.d.ts",
      "default": "./dist/href.js"
    },
    "./join": {
      "types": "./dist/join.d.ts",
      "default": "./dist/join.js"
    },
    "./match": {
      "types": "./dist/match.d.ts",
      "default": "./dist/match.js"
    },
    "./specificity": {
      "types": "./dist/specificity.d.ts",
      "default": "./dist/specificity.js"
    },
    "./package.json": "./package.json"
  },
  "devDependencies": {
    "@types/node": "^24.6.0",
    "@typescript/native-preview": "7.0.0-dev.20251125.1",
    "dedent": "^1.7.1",
    "@remix-run/assert": "0.3.0",
    "@remix-run/test": "0.5.0"
  },
  "keywords": [
    "route",
    "pattern",
    "url",
    "match",
    "matcher"
  ],
  "scripts": {
    "build": "tsgo -p tsconfig.build.json",
    "clean": "git clean -fdX",
    "test": "remix-test",
    "test:bun": "bun x --bun remix-test",
    "typecheck": "tsgo --noEmit"
  }
}