{
  "name": "websocket-handler",
  "version": "1.0.3",
  "description": "A comprehensive WebSocket handler library for Node.js with client and server support, featuring channels, reconnection strategies, and event management",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "test": "echo \"Error: no test specified\" && exit 1",
    "example:basic:server": "ts-node -r tsconfig-paths/register example/basic/server.ts",
    "example:basic:client": "ts-node -r tsconfig-paths/register example/basic/client.ts",
    "example:chat:server": "ts-node -r tsconfig-paths/register example/chat/server.ts",
    "example:chat:client": "ts-node -r tsconfig-paths/register example/chat/client.ts",
    "example:streaming:server": "ts-node -r tsconfig-paths/register example/streaming/server.ts",
    "example:streaming:client": "ts-node -r tsconfig-paths/register example/streaming/client.ts",
    "example:notifications:server": "ts-node -r tsconfig-paths/register example/notifications/server.ts",
    "example:notifications:client": "ts-node -r tsconfig-paths/register example/notifications/client.ts"
  },
  "keywords": [
    "websocket",
    "websockets",
    "ws",
    "real-time",
    "communication",
    "client",
    "server",
    "channels",
    "reconnection",
    "typescript",
    "nodejs"
  ],
  "files": [
    "dist/**/*",
    "README.md"
  ],
  "author": "nimawr",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/nimawr/websocket-handler.git"
  },
  "bugs": {
    "url": "https://github.com/nimawr/websocket-handler/issues"
  },
  "homepage": "https://github.com/nimawr/websocket-handler#readme",
  "engines": {
    "node": ">=16.0.0"
  },
  "dependencies": {
    "tsconfig-paths": "^4.2.0",
    "uuid": "^11.1.0",
    "ws": "^8.18.3"
  },
  "devDependencies": {
    "@types/node": "^24.0.0",
    "@types/uuid": "^10.0.0",
    "@types/ws": "^8.18.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.3"
  }
}
