{
  "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-clustered-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.3.3",
    "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 --require ts-node/register 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"
  ]
}
