websocket-client-plus
Version:
Enhanced WebSocket client with reconnect, heartbeat and message queue support.
48 lines • 1.32 kB
JSON
{
"name": "websocket-client-plus",
"version": "1.0.0",
"description": "Enhanced WebSocket client with reconnect, heartbeat and message queue support.",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "NODE_ENV=development rollup -c ../../rollup.config.js -w",
"build": "pnpm run clean && pnpm run lint && NODE_ENV=production rollup -c ../../rollup.config.js",
"clean": "rm -rf dist",
"format": "prettier --check . --ignore-path ../../.prettierignore",
"format:fix": "prettier --write . --ignore-path ../../.prettierignore",
"lint": "eslint . --ext .js,.ts,.json,.md",
"lint:fix": "eslint . --ext .js,.ts,.json,.md --fix"
},
"keywords": [
"websocket",
"websocket-client",
"websocket-plus",
"ws",
"ws-client",
"websocket reconnect",
"websocket heartbeat",
"websocket wrapper",
"websocket reconnect client",
"websocket auto reconnect",
"websocket manager",
"message client",
"real-time",
"real-time-client",
"typescript"
],
"author": "adiu",
"license": "MIT",
"packageManager": "pnpm@10.13.1",
"type": "module",
"dependencies": {
"tslib": "^2.8.1"
}
}