{ "name": "graphql-ws", "version": "5.5.5", "description": "Coherent, zero-dependency, lazy, simple, GraphQL over WebSocket Protocol compliant server and client", "keywords": [ "protocol", "graphql", "transport", "subscriptions", "websockets", "server", "client", "observables", "express", "relay", "apollo", "fastify", "uwebsockets" ], "author": "Denis Badurina ", "license": "MIT", "homepage": "https://github.com/enisdenjo/graphql-ws#readme", "repository": { "type": "git", "url": "https://github.com/enisdenjo/graphql-ws.git" }, "engines": { "node": ">=10" }, "packageManager": "yarn@3.1.0", "main": "lib/index.js", "module": "lib/index.mjs", "browser": "umd/graphql-ws.js", "exports": { ".": { "require": "./lib/index.js", "import": "./lib/index.mjs", "browser": "./umd/graphql-ws.js" }, "./lib/use/ws": { "require": "./lib/use/ws.js", "import": "./lib/use/ws.mjs" }, "./lib/use/uWebSockets": { "require": "./lib/use/uWebSockets.js", "import": "./lib/use/uWebSockets.mjs" }, "./lib/use/fastify-websocket": { "require": "./lib/use/fastify-websocket.js", "import": "./lib/use/fastify-websocket.mjs" }, "./package.json": "./package.json" }, "types": "lib/index.d.ts", "files": [ "lib", "umd", "README.md", "LICENSE.md", "PROTOCOL.md" ], "sideEffects": [ "umd/*" ], "publishConfig": { "access": "public" }, "scripts": { "gendocs": "typedoc --options typedoc.js src/", "lint": "eslint 'src'", "type-check": "tsc --noEmit", "test": "jest", "bench:start-servers": "NODE_ENV=production node benchmark/servers/index.mjs", "bench": "k6 run benchmark/k6.mjs", "build:esm": "tsc -b tsconfig.esm.json && node scripts/esm-post-process.js", "build:cjs": "tsc -b tsconfig.cjs.json", "build:umd": "rollup -c && gzip umd/graphql-ws.min.js -c > umd/graphql-ws.min.js.gz", "build": "yarn build:esm && yarn build:cjs && yarn build:umd", "release": "semantic-release" }, "peerDependencies": { "graphql": ">=0.11 <=16" }, "devDependencies": { "@babel/core": "^7.15.8", "@babel/plugin-proposal-class-properties": "^7.14.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", "@babel/plugin-proposal-object-rest-spread": "^7.15.6", "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-env": "^7.15.8", "@babel/preset-typescript": "^7.15.0", "@rollup/plugin-typescript": "^8.3.0", "@semantic-release/changelog": "^6.0.0", "@semantic-release/git": "^10.0.0", "@types/jest": "^26.0.24", "@types/ws": "^8.2.0", "@typescript-eslint/eslint-plugin": "^5.2.0", "@typescript-eslint/parser": "^5.2.0", "babel-jest": "^27.3.1", "eslint": "^8.1.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^4.0.0", "fastify": "^3.22.1", "fastify-websocket": "^4.0.0", "glob": "^7.2.0", "graphql": "16.0.0", "jest": "^27.3.1", "prettier": "^2.4.1", "replacestream": "^4.0.3", "rollup": "^2.58.3", "rollup-plugin-terser": "^7.0.2", "semantic-release": "^18.0.0", "subscriptions-transport-ws": "^0.9.19", "tslib": "^2.3.1", "typedoc": "0.22.7", "typedoc-plugin-markdown": "^3.11.3", "typescript": "^4.4.4", "uWebSockets.js": "uNetworking/uWebSockets.js#v20.2.0", "ws": "^8.2.3", "ws7": "npm:ws@^7.5.5" } }