{
  "name": "@hatsy/hatsy",
  "version": "3.0.0",
  "description": "Asynchronous TypeScript-friendly HTTP server for Node.js",
  "keywords": [
    "http-framework",
    "http-server",
    "request-handler",
    "web-server"
  ],
  "homepage": "https://github.com/hatsyjs/hatsy",
  "repository": {
    "type": "git",
    "url": "ssh://git@github.com:hatsyjs/hatsy.git"
  },
  "license": "MIT",
  "author": "Ruslan Lopatin <ruslan.lopatin@gmail.com>",
  "bugs": {
    "url": "https://github.com/hatsyjs/hatsy/issues"
  },
  "type": "module",
  "types": "./dist/hatsy.d.ts",
  "typesVersions": {
    "*": {
      "core.js": [
        "./dist/hatsy.core.d.ts"
      ],
      "testing.js": [
        "./dist/hatsy.testing.d.ts"
      ]
    }
  },
  "exports": {
    ".": {
      "types": "./dist/hatsy.d.ts",
      "default": "./dist/hatsy.js"
    },
    "./core.js": {
      "types": "./dist/hatsy.core.d.ts",
      "default": "./dist/hatsy.core.js"
    },
    "./package.json": "./package.json",
    "./testing.js": {
      "types": "./dist/hatsy.testing.d.ts",
      "default": "./dist/hatsy.testing.js"
    }
  },
  "sideEffects": false,
  "dependencies": {
    "@proc7ts/logger": "^2.0.0",
    "@proc7ts/primitives": "^4.0.1",
    "httongue": "^3.1.0",
    "http-header-value": "^4.0.0"
  },
  "engines": {
    "node": ">=18"
  },
  "devDependencies": {
    "@jest/globals": "^29.7.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",
    "@types/node": "^18.17.17",
    "@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"
  }
}