{
  "name": "graphql-ws",
  "version": "5.16.2",
  "description": "Coherent, zero-dependency, lazy, simple, GraphQL over WebSocket Protocol compliant server and client",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/enisdenjo/graphql-ws.git"
  },
  "homepage": "https://the-guild.dev/graphql/ws",
  "author": "Denis Badurina <badurinadenis@gmail.com>",
  "license": "MIT",
  "packageManager": "yarn@4.6.0",
  "engines": {
    "node": ">=10"
  },
  "main": "lib/index.js",
  "module": "lib/index.mjs",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "require": "./lib/index.js",
      "import": "./lib/index.mjs",
      "browser": "./umd/graphql-ws.js"
    },
    "./lib/use/ws": {
      "types": "./lib/use/ws.d.ts",
      "require": "./lib/use/ws.js",
      "import": "./lib/use/ws.mjs"
    },
    "./lib/use/uWebSockets": {
      "types": "./lib/use/uWebSockets.d.ts",
      "require": "./lib/use/uWebSockets.js",
      "import": "./lib/use/uWebSockets.mjs"
    },
    "./lib/use/@fastify/websocket": {
      "types": "./lib/use/@fastify/websocket.d.ts",
      "require": "./lib/use/@fastify/websocket.js",
      "import": "./lib/use/@fastify/websocket.mjs"
    },
    "./lib/use/fastify-websocket": {
      "types": "./lib/use/fastify-websocket.d.ts",
      "require": "./lib/use/fastify-websocket.js",
      "import": "./lib/use/fastify-websocket.mjs"
    },
    "./lib/use/bun": {
      "bun": "./lib/use/bun.mjs",
      "types": "./lib/use/bun.d.ts",
      "require": "./lib/use/bun.js",
      "import": "./lib/use/bun.mjs"
    },
    "./lib/use/deno": {
      "types": "./lib/use/deno.d.ts",
      "require": "./lib/use/deno.js",
      "import": "./lib/use/deno.mjs"
    },
    "./package.json": "./package.json"
  },
  "browser": "umd/graphql-ws.js",
  "types": "lib/index.d.ts",
  "sideEffects": [
    "umd/*"
  ],
  "files": [
    "LICENSE.md",
    "PROTOCOL.md",
    "lib",
    "umd",
    "README.md"
  ],
  "keywords": [
    "protocol",
    "graphql",
    "transport",
    "subscriptions",
    "websockets",
    "server",
    "client",
    "observables",
    "express",
    "relay",
    "apollo",
    "fastify",
    "uwebsockets"
  ],
  "scripts": {
    "build": "yarn build:esm && yarn build:cjs && yarn build:umd && yarn postbuild",
    "build:cjs": "tsc -b tsconfig.cjs.json",
    "build:esm": "tsc -b tsconfig.esm.json && node scripts/esm-post-process.mjs",
    "build:umd": "rollup --bundleConfigAsCjs --config rollup.config.ts --configPlugin typescript && gzip umd/graphql-ws.min.js -c > umd/graphql-ws.min.js.gz",
    "changeset": "changeset",
    "check:format": "prettier --check .",
    "check:lint": "eslint 'src'",
    "check:type": "tsc --noEmit",
    "format": "yarn check:format --write",
    "gendocs": "typedoc --options typedoc.js src/ && node scripts/post-gendocs.mjs",
    "postbuild": "node scripts/fix-declaration-directives.mjs",
    "test": "vitest",
    "release": "yarn build && yarn changeset publish"
  },
  "peerDependencies": {
    "graphql": ">=0.11 <=16"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.5.0",
    "@changesets/cli": "^2.27.11",
    "@fastify/websocket": "^9.0.0",
    "@ianvs/prettier-plugin-sort-imports": "^4.4.0",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^11.1.6",
    "@types/eslint": "^8.56.10",
    "@types/glob": "^8.1.0",
    "@types/ws": "^8.5.10",
    "@typescript-eslint/eslint-plugin": "^7.7.0",
    "@typescript-eslint/parser": "^7.7.0",
    "bun-types": "^1.1.4",
    "eslint": "^8.57.0",
    "fastify": "^4.26.2",
    "fastify-websocket": "4.2.2",
    "glob": "^10.3.12",
    "graphql": "^16.8.1",
    "jsdom": "^25.0.1",
    "prettier": "^3.4.2",
    "prettier-plugin-sh": "^0.14.0",
    "replacestream": "^4.0.3",
    "rollup": "^4.14.3",
    "subscriptions-transport-ws": "^0.11.0",
    "tslib": "^2.6.2",
    "typedoc": "^0.25.13",
    "typedoc-plugin-markdown": "^3.17.1",
    "typescript": "^5.4.5",
    "uWebSockets.js": "uNetworking/uWebSockets.js#v20.43.0",
    "vitest": "^2.1.8",
    "ws": "8.12.0",
    "ws7": "npm:ws@^7.5.9"
  }
}
