websocket13
Version:
Simple WebSocket protocol 13 client with no native or heavy dependencies
61 lines (60 loc) • 1.42 kB
JSON
{
"name": "websocket13",
"version": "4.0.0",
"publishConfig": {
"tag": "latest"
},
"description": "Simple WebSocket protocol 13 client with no native or heavy dependencies",
"author": "Alex Corn <mckay@doctormckay.com>",
"main": "dist/index.js",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/DoctorMcKay/node-websocket13.git"
},
"keywords": [
"websocket",
"websockets",
"web socket",
"web sockets",
"networking",
"network",
"socket",
"sockets",
"data"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/DoctorMcKay/node-websocket13/issues"
},
"homepage": "https://github.com/DoctorMcKay/node-websocket13",
"dependencies": {
"@doctormckay/stdlib": "^2.7.1",
"bytebuffer": "^5.0.1",
"permessage-deflate": "^0.1.7",
"tiny-typed-emitter": "^2.1.0",
"websocket-extensions": "^0.1.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-preset-minify": "^0.5.1",
"@types/node": "^12.20.55",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"@typescript-eslint/eslint-plugin": "^5.36.0",
"@typescript-eslint/parser": "^5.36.0",
"eslint": "^8.23.0"
},
"engines": {
"node": ">=12.22.0"
},
"scripts": {
"prepare": "npm run build",
"build": "node scripts/delete-dist.js && tsc --outDir dist",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
}
}