Files
socket.io/packages/socket.io-cluster-engine/package.json
2025-12-22 10:39:57 +01:00

42 lines
1.2 KiB
JSON

{
"name": "@socket.io/cluster-engine",
"version": "0.1.0",
"description": "A cluster-friendly engine to share load between multiple Node.js processes (without sticky sessions)",
"type": "commonjs",
"license": "MIT",
"homepage": "https://github.com/socketio/socket.io/tree/main/packages/socket.io-cluster-engine#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/socketio/socket.io.git"
},
"bugs": {
"url": "https://github.com/socketio/socket.io/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"@msgpack/msgpack": "~2.8.0",
"debug": "~4.4.1",
"engine.io": "~6.6.0",
"engine.io-parser": "~5.2.3"
},
"scripts": {
"compile": "rimraf ./dist && tsc",
"test": "npm run format:check && npm run compile && npm run test:unit",
"test:unit": "mocha --import=tsx test/*.ts",
"format:check": "prettier --check \"lib/**/*.ts\" \"test/**/*.ts\"",
"format:fix": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"",
"prepack": "npm run compile"
},
"engines": {
"node": ">=10.2.0"
},
"keywords": [
"socket.io",
"cluster"
]
}