{
  "name": "@stone-js/http-core",
  "version": "0.8.16",
  "description": "Stone.js HTTP Core offers a simple, consistent API for handling HTTP requests and responses across any JavaScript runtime.",
  "author": "Mr. Stone <evensstone@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stone-foundation/stone-js-framework.git",
    "directory": "stone-js-http-core"
  },
  "homepage": "https://stonejs.dev",
  "bugs": {
    "url": "https://github.com/stone-foundation/stone-js-framework/issues"
  },
  "keywords": [
    "Http",
    "Core",
    "Stone.js",
    "Foundation"
  ],
  "files": [
    "/dist"
  ],
  "type": "module",
  "sideEffects": false,
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "engines": {
    "node": ">=18.17.0"
  },
  "peerDependencies": {
    "@stone-js/core": "0.8.16",
    "@stone-js/filesystem": "0.8.16"
  },
  "dependencies": {
    "accepts": "^1.3.8",
    "busboy": "^1.6.0",
    "bytes": "^3.1.2",
    "content-disposition": "^0.5.4",
    "content-type": "^1.0.5",
    "cookie": "^1.0.2",
    "cookie-signature": "^1.2.2",
    "fresh": "^0.5.2",
    "ip-range-check": "^0.2.0",
    "mime": "^4.0.6",
    "range-parser": "^1.2.1",
    "send": "^1.1.0",
    "statuses": "^2.0.1",
    "type-is": "^2.0.1",
    "vary": "^1.1.2",
    "@stone-js/config": "0.8.16"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@rollup/plugin-commonjs": "^28.0.6",
    "@rollup/plugin-multi-entry": "^6.0.1",
    "@rollup/plugin-node-resolve": "^16.0.1",
    "@rollup/plugin-typescript": "^12.1.4",
    "@types/accepts": "^1.3.7",
    "@types/busboy": "^1.5.4",
    "@types/bytes": "^3.1.4",
    "@types/content-disposition": "^0.5.9",
    "@types/content-type": "^1.1.8",
    "@types/cookie-signature": "^1.1.2",
    "@types/fresh": "^0.5.3",
    "@types/lodash-es": "^4.17.12",
    "@types/mime": "^3.0.4",
    "@types/node": "^24.0.7",
    "@types/range-parser": "^1.2.7",
    "@types/send": "^0.17.5",
    "@types/statuses": "^2.0.5",
    "@types/type-is": "^1.6.7",
    "@types/vary": "^1.1.3",
    "@vitest/coverage-v8": "^3.2.4",
    "husky": "^9.1.7",
    "rimraf": "^6.0.1",
    "rollup": "^4.44.1",
    "rollup-plugin-node-externals": "^8.0.1",
    "ts-standard": "^12.0.2",
    "tslib": "^2.8.1",
    "typedoc": "^0.28.6",
    "typedoc-plugin-markdown": "^4.7.0",
    "typescript": "^5.6.3",
    "vitest": "^3.2.4"
  },
  "ts-standard": {
    "globals": [
      "it",
      "test",
      "expect",
      "describe",
      "beforeEach"
    ]
  },
  "scripts": {
    "lint": "ts-standard src",
    "lint:fix": "ts-standard --fix src tests",
    "predoc": "rimraf docs",
    "doc": "typedoc",
    "clean": "rimraf dist",
    "build": "rollup -c",
    "test": "vitest run",
    "test:cvg": "npm run test -- --coverage",
    "test:text": "npm run test:cvg -- --coverage.reporter=text",
    "test:html": "npm run test:cvg -- --coverage.reporter=html",
    "test:clover": "npm run test:cvg -- --coverage.reporter=clover"
  }
}