{
	"name": "bhttp-ts",
	"version": "0.6.0",
	"description": "BHTTP (RFC 9292) encoder and decoder for the Fetch API Request/Response interface",
	"type": "module",
	"sideEffects": false,
	"main": "./dist/index.mjs",
	"module": "./dist/index.mjs",
	"types": "./dist/index.d.mts",
	"exports": {
		".": {
			"types": "./dist/index.d.mts",
			"import": "./dist/index.mjs",
			"default": "./dist/index.mjs"
		}
	},
	"files": [
		"dist",
		"src"
	],
	"scripts": {
		"build": "tsdown",
		"bench": "vitest bench",
		"test": "vitest run",
		"test:watch": "vitest",
		"test:browser": "vitest run --config vitest.browser.config.ts",
		"test:workers": "vitest run --config vitest.workers.config.ts",
		"lint": "biome check src test",
		"format": "biome format --write src test",
		"typecheck": "tsc --noEmit"
	},
	"keywords": [
		"bhttp",
		"binary-http",
		"rfc9292",
		"fetch-api",
		"request",
		"response",
		"encoder",
		"decoder",
		"cloudflare-workers"
	],
	"contributors": [
		"Ajitomi Daisuke",
		"Thibault Meunier"
	],
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/thibmeu/bhttp-ts.git"
	},
	"bugs": {
		"url": "https://github.com/thibmeu/bhttp-ts/issues"
	},
	"homepage": "https://github.com/thibmeu/bhttp-ts#readme",
	"dependencies": {
		"quicvarint": "^0.2.1"
	},
	"devDependencies": {
		"@biomejs/biome": "^2.4.16",
		"@cloudflare/vitest-pool-workers": "^0.22.0",
		"@vitest/browser": "^4.1.8",
		"@vitest/browser-playwright": "^4.1.8",
		"playwright": "^1.60.0",
		"tsdown": "^0.22.4",
		"typescript": "^7.0.2",
		"vitest": "^4.1.8"
	},
	"overrides": {
		"tsdown": {
			"typescript": "$typescript"
		}
	}
}
