{
  "name": "h3",
  "version": "1.12.0",
  "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.1.0",
    "crossws": "^0.2.4",
    "defu": "^6.1.4",
    "destr": "^2.0.3",
    "iron-webcrypto": "^1.1.1",
    "ohash": "^1.1.3",
    "radix3": "^1.1.2",
    "ufo": "^1.5.3",
    "uncrypto": "^0.1.3",
    "unenv": "^1.9.0"
  },
  "devDependencies": {
    "0x": "^5.7.0",
    "@types/express": "^4.17.21",
    "@types/node": "^20.12.7",
    "@types/supertest": "^6.0.2",
    "@vitest/coverage-v8": "^1.5.2",
    "autocannon": "^7.15.0",
    "automd": "^0.3.7",
    "changelogen": "^0.5.5",
    "connect": "^3.7.0",
    "eslint": "^9.1.1",
    "eslint-config-unjs": "^0.3.0-rc.6",
    "express": "^4.19.2",
    "get-port": "^7.1.0",
    "jiti": "^1.21.0",
    "listhen": "^1.7.2",
    "node-fetch-native": "^1.6.4",
    "prettier": "^3.2.5",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "supertest": "^7.0.0",
    "typescript": "^5.4.5",
    "unbuild": "^2.0.0",
    "undici": "^6.19.2",
    "vitest": "^1.5.2",
    "zod": "^3.23.4"
  },
  "scripts": {
    "build": "unbuild",
    "dev": "vitest",
    "lint": "eslint --cache . && prettier -c src test playground examples docs",
    "lint:fix": "eslint --cache . --fix && prettier -c src test playground examples docs -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 --coverage"
  }
}