{
	"name": "http-essentials",
	"version": "1.4.0",
	"description": "HTTP statuses, phrases, and exceptions",
	"type": "module",
	"main": "dist/index.js",
	"module": "dist/index.js",
	"types": "dist/index.d.ts",
	"sideEffects": false,
	"files": [
		"dist"
	],
	"keywords": [
		"http"
	],
	"author": "Orkhan Karimov <karimovok1@gmail.com> (https://github.com/kerimovok)",
	"homepage": "https://github.com/honestjs/http-essentials",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/honestjs/http-essentials.git"
	},
	"publishConfig": {
		"registry": "https://registry.npmjs.org"
	},
	"devDependencies": {
		"@types/bun": "latest"
	},
	"peerDependencies": {
		"typescript": "^5.8.2"
	},
	"scripts": {
		"clean": "rm -rf dist",
		"build": "bun run clean && bun build ./src/index.ts --outdir=dist --target=node --minify && bun run build:types",
		"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist"
	}
}
