{
  "name": "h3",
  "version": "1.6.2",
  "description": "Tiny JavaScript Server",
  "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": "^0.5.0",
    "defu": "^6.1.2",
    "destr": "^1.2.2",
    "iron-webcrypto": "^0.6.0",
    "radix3": "^1.0.0",
    "ufo": "^1.1.1",
    "uncrypto": "^0.1.2"
  },
  "devDependencies": {
    "0x": "^5.5.0",
    "@types/express": "^4.17.17",
    "@types/node": "^18.15.3",
    "@types/supertest": "^2.0.12",
    "@vitest/coverage-c8": "^0.29.2",
    "autocannon": "^7.10.0",
    "changelogen": "^0.5.1",
    "connect": "^3.7.0",
    "eslint": "^8.36.0",
    "eslint-config-unjs": "^0.1.0",
    "express": "^4.18.2",
    "get-port": "^6.1.2",
    "jiti": "^1.18.2",
    "listhen": "^1.0.4",
    "node-fetch-native": "^1.0.2",
    "prettier": "^2.8.4",
    "supertest": "^6.3.3",
    "typescript": "^4.9.5",
    "unbuild": "^1.1.2",
    "vitest": "^0.29.2"
  },
  "packageManager": "pnpm@7.29.3",
  "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": "jiti ./playground/index.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",
    "test": "pnpm lint && vitest run --coverage"
  }
}