@remix-run/headers
Version:
A toolkit for working with HTTP headers in JavaScript
61 lines • 1.4 kB
JSON
{
"name": "@remix-run/headers",
"version": "0.18.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": "^5.9.3"
},
"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": "tsc -p tsconfig.build.json",
"clean": "git clean -fdX",
"test": "node --disable-warning=ExperimentalWarning --test './src/**/*.test.ts'",
"typecheck": "tsc --noEmit"
}
}