{
  "name": "h3",
  "version": "1.8.2",
  "description": "Minimal H(TTP) framework built for high performance and portability.",
  "repository": "unjs/h3",
  "license": "MIT",
  "sideEffects": false,
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "cookie-es": "^1.0.0",
    "defu": "^6.1.2",
    "destr": "^2.0.1",
    "iron-webcrypto": "^0.10.1",
    "radix3": "^1.1.0",
    "ufo": "^1.3.0",
    "uncrypto": "^0.1.3",
    "unenv": "^1.7.4"
  },
  "devDependencies": {
    "0x": "^5.7.0",
    "@types/express": "^4.17.18",
    "@types/node": "^20.7.0",
    "@types/supertest": "^2.0.13",
    "@vitest/coverage-v8": "^0.34.5",
    "autocannon": "^7.12.0",
    "changelogen": "^0.5.5",
    "connect": "^3.7.0",
    "eslint": "^8.50.0",
    "eslint-config-unjs": "^0.2.1",
    "express": "^4.18.2",
    "get-port": "^7.0.0",
    "jiti": "^1.20.0",
    "listhen": "^1.5.5",
    "node-fetch-native": "^1.4.0",
    "prettier": "^3.0.3",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "supertest": "^6.3.3",
    "typescript": "^5.2.2",
    "unbuild": "^2.0.0",
    "vitest": "^0.34.5",
    "zod": "^3.22.2"
  },
  "packageManager": "pnpm@8.8.0",
  "scripts": {
    "build": "unbuild",
    "dev": "vitest",
    "lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier -c src test playground",
    "lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier -c src test playground -w",
    "play": "listhen -w ./playground/app.ts",
    "profile": "0x -o -D .profile -P 'autocannon -c 100 -p 10 -d 40 http://localhost:$PORT' ./playground/server.cjs",
    "release": "pnpm test && pnpm build && changelogen --release && pnpm publish && git push --follow-tags",
    "release-rc": "pnpm test && pnpm build && changelogen --release --prerelease rc --push --publish --publishTag rc",
    "test": "pnpm lint && vitest --run typecheck && vitest --run --coverage",
    "test:types": "vitest typecheck"
  }
}