{
  "name": "@hono/capnweb",
  "version": "0.1.0",
  "description": "Cap'n Web Adapter for Hono",
  "type": "module",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsdown",
    "format": "prettier --check . --ignore-path ../../.gitignore",
    "lint": "eslint",
    "publint": "attw --pack && publint",
    "typecheck": "tsc -b tsconfig.json",
    "test": "vitest",
    "version:jsr": "yarn version:set $npm_package_version"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "license": "MIT",
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public",
    "provenance": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/honojs/middleware.git",
    "directory": "packages/capnweb"
  },
  "homepage": "https://github.com/honojs/middleware",
  "peerDependencies": {
    "capnweb": ">=0.2.0",
    "hono": ">=4.0.0"
  },
  "devDependencies": {
    "@hono/node-server": "^1.19.2",
    "@hono/node-ws": "^1.2.0",
    "@types/ws": "^8.5.0",
    "capnweb": "^0.2.0",
    "hono": "^4.10.1",
    "publint": "^0.3.14",
    "tsdown": "^0.15.9",
    "typescript": "^5.8.2",
    "vitest": "^3.2.4",
    "ws": "^8.17.0"
  }
}