{
  "name": "@illumiarq/http",
  "version": "1.1.5",
  "license": "MIT",
  "description": "LumiARQ HTTP layer — routing, handlers, loaders, middleware, request/response helpers",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "fast-json-stable-stringify": "^2.1.0",
    "zod": "^3.22.0",
    "@illumiarq/core": "1.1.5"
  },
  "devDependencies": {
    "typescript": "^5.7.2",
    "vitest": "^3.0.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src/",
    "clean": "rm -rf dist"
  }
}