mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "@socket.io/cluster-adapter",
|
|
"version": "0.3.0",
|
|
"description": "The Socket.IO cluster adapter, allowing to broadcast events between several Socket.IO servers",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/socketio/socket.io/tree/main/packages/socket.io-cluster-adapter#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/socketio/socket.io.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/socketio/socket.io/issues"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"compile": "rimraf ./dist && tsc",
|
|
"test": "npm run format:check && npm run compile && nyc mocha --import=tsx test/index.ts",
|
|
"format:check": "prettier --check \"lib/**/*.ts\" \"test/**/*.ts\"",
|
|
"format:fix": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"",
|
|
"prepack": "npm run compile"
|
|
},
|
|
"dependencies": {
|
|
"debug": "~4.4.1"
|
|
},
|
|
"peerDependencies": {
|
|
"socket.io-adapter": "~2.5.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"keywords": [
|
|
"socket.io",
|
|
"cluster",
|
|
"adapter"
|
|
]
|
|
}
|