{
  "name": "@ws-kit/core",
  "version": "0.10.1",
  "description": "Tiny, type-safe WebSocket router",
  "type": "module",
  "sideEffects": false,
  "license": "MIT",
  "author": "Konstantin Tarkus",
  "homepage": "https://kriasoft.com/ws-kit/",
  "bugs": "https://github.com/kriasoft/ws-kit/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/kriasoft/ws-kit.git",
    "directory": "packages/core"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/koistya"
  },
  "keywords": [
    "websocket",
    "router",
    "type-safe",
    "rpc",
    "pub-sub"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./plugin": {
      "types": "./dist/plugin/index.d.ts",
      "default": "./dist/plugin/index.js"
    },
    "./pubsub": {
      "types": "./dist/capabilities/pubsub/index.d.ts",
      "default": "./dist/capabilities/pubsub/index.js"
    },
    "./testing": {
      "types": "./dist/testing/index.d.ts",
      "default": "./dist/testing/index.js"
    },
    "./internal": {
      "types": "./dist/internal.d.ts",
      "default": "./dist/internal.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@types/bun": "^1.3.6",
    "@ws-kit/bun": "^0.10.1",
    "@ws-kit/memory": "^0.10.1",
    "@ws-kit/pubsub": "^0.10.2",
    "@ws-kit/zod": "^0.10.2",
    "typescript": "^5.0.0",
    "zod": "^4.1.13"
  },
  "engines": {
    "node": ">=22"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "test": "bun test",
    "typecheck": "tsc --build tsconfig.check.json"
  }
}
