{
  "name": "@remix-run/headers",
  "version": "0.19.0",
  "description": "A toolkit for working with HTTP headers in JavaScript",
  "author": "Michael Jackson <mjijackson@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/remix-run/remix.git",
    "directory": "packages/headers"
  },
  "homepage": "https://github.com/remix-run/remix/tree/main/packages/headers#readme",
  "files": [
    "LICENSE",
    "README.md",
    "dist",
    "src",
    "!src/**/*.test.ts"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "devDependencies": {
    "@types/node": "^24.6.0",
    "@typescript/native-preview": "7.0.0-dev.20251125.1"
  },
  "keywords": [
    "fetch",
    "http",
    "header",
    "headers",
    "http-headers",
    "request-headers",
    "response-headers",
    "content-negotiation",
    "cookies",
    "set-cookie",
    "cache-control",
    "content-type",
    "accept",
    "accept-encoding",
    "accept-language",
    "content-disposition",
    "if-none-match",
    "etag",
    "user-agent",
    "host",
    "last-modified"
  ],
  "scripts": {
    "build": "tsgo -p tsconfig.build.json",
    "clean": "git clean -fdX",
    "test": "node --disable-warning=ExperimentalWarning --test",
    "typecheck": "tsgo --noEmit"
  }
}