{
  "name": "@hatsy/router",
  "version": "3.0.0",
  "description": "Hatsy router",
  "keywords": [
    "http-middleware",
    "http-router",
    "routing"
  ],
  "homepage": "https://github.com/hatsyjs/router",
  "repository": {
    "type": "git",
    "url": "ssh://git@github.com:hatsyjs/router.git"
  },
  "license": "MIT",
  "author": "Ruslan Lopatin <ruslan.lopatin@gmail.com>",
  "bugs": {
    "url": "https://github.com/hatsyjs/router/issues"
  },
  "type": "module",
  "types": "./dist/router.d.ts",
  "exports": {
    "types": "./dist/router.d.ts",
    "default": "./dist/router.js"
  },
  "sideEffects": false,
  "dependencies": {
    "@hatsy/route-match": "^2.0.0",
    "@proc7ts/primitives": "^4.0.1",
    "http-header-value": "^4.0.0"
  },
  "peerDependencies": {
    "@hatsy/hatsy": "^3.0.0"
  },
  "devDependencies": {
    "@hatsy/hatsy": "^3.0.0",
    "@jest/globals": "^29.7.0",
    "@proc7ts/logger": "^2.0.0",
    "@run-z/eslint-config": "^3.5.0",
    "@run-z/prettier-config": "^2.0.0",
    "@run-z/project-config": "^0.20.0",
    "@swc/core": "^1.3.85",
    "@swc/jest": "^0.2.29",
    "@typescript-eslint/eslint-plugin": "^6.7.0",
    "@typescript-eslint/parser": "^6.7.0",
    "eslint": "^8.49.0",
    "eslint-plugin-jest": "^27.4.0",
    "gh-pages": "^6.0.0",
    "jest": "^29.7.0",
    "jest-junit": "^16.0.0",
    "jest-mock": "^29.7.0",
    "prettier": "^2.8.8",
    "prettier-eslint-cli": "^7.1.0",
    "rollup": "^3.29.2",
    "run-z": "^2.0.0",
    "ts-jest": "^29.1.1",
    "tslib": "^2.6.2",
    "typedoc": "^0.25.1",
    "typescript": "~5.2.2"
  },
  "scripts": {
    "all": "run-z build,lint,test",
    "build": "run-z +z --then build-z",
    "ci:all": "run-z all +test/--ci/--runInBand",
    "clean": "run-z +z --then clean-z",
    "doc": "run-z +z --then typedoc",
    "doc:publish": "run-z doc --then gh-pages --dist target/typedoc --dotfiles",
    "format": "run-z +z --then prettier-eslint --write --include-dot-files \"src/**/*.*\" \"*.{js,cjs,json,md}\"",
    "lint": "run-z +z --then eslint .",
    "test": "run-z +z env:NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" --then test-z",
    "z": "run-z +cmd:build-z,+cmd:typedoc,+cmd:eslint,+cmd:test-z"
  }
}