{
  "name": "jet-paths",
  "version": "3.1.1",
  "description": "A TypeScript-first utility for composing, validating, and formatting URL paths using nested objects.",
  "type": "module",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "browser": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/types/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "npm run clean && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && tsc -p tsconfig.types.json",
    "clean": "rm -rf dist && rm -rf cjs && rm -rf esm",
    "clean:install": "rm -rf ./node_modules && rm -r package-lock.json && npm i",
    "pre-publish": "mv README.md README-git && mv README-npm README.md",
    "post-publish": "mv README.md README-npm && mv README-git README.md",
    "test": "NODE_ENV=test vitest"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/seanpmaxwell/jet-paths.git"
  },
  "keywords": [
    "typescript",
    "url",
    "urls",
    "routing",
    "routes",
    "path",
    "paths",
    "api",
    "rest",
    "http",
    "type-safe",
    "typesafe",
    "regex",
    "validation",
    "parameters",
    "string-formatting",
    "developer-tools"
  ],
  "author": "sean maxwell",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/seanpmaxwell/jet-paths/issues"
  },
  "homepage": "https://github.com/seanpmaxwell/jet-paths#readme",
  "devDependencies": {
    "@eslint/js": "^9.26.0",
    "@stylistic/eslint-plugin": "^5.6.1",
    "@trivago/prettier-plugin-sort-imports": "^6.0.1",
    "@types/node": "^22.8.1",
    "eslint": "^9.26.0",
    "eslint-config-prettier": "^10.1.8",
    "jiti": "^2.6.1",
    "prettier": "^3.7.4",
    "typescript": "~5.9.3",
    "typescript-eslint": "^8.50.0",
    "vitest": "^4.0.15"
  }
}
