mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-10 07:28:06 -05:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "@socket.io/cluster-adapter",
|
|
"version": "0.2.2",
|
|
"description": "The Socket.IO cluster adapter, allowing to broadcast events between several Socket.IO servers",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:socketio/socket.io-cluster-adapter.git"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"test": "npm run format:check && tsc && nyc mocha --import=tsx test/index.ts",
|
|
"format:check": "prettier --check 'lib/**/*.ts' 'test/**/*.ts'",
|
|
"format:fix": "prettier --write 'lib/**/*.ts' 'test/**/*.ts'",
|
|
"prepack": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"debug": "~4.3.1"
|
|
},
|
|
"peerDependencies": {
|
|
"socket.io-adapter": "~2.5.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/expect.js": "^0.3.29",
|
|
"@types/mocha": "^10.0.0",
|
|
"@types/node": "~20.19.21",
|
|
"expect.js": "0.3.1",
|
|
"mocha": "^10.0.0",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "~3.6.2",
|
|
"socket.io": "^4.6.1",
|
|
"socket.io-client": "^4.7.1",
|
|
"tsx": "~4.20.6",
|
|
"typescript": "~5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"keywords": [
|
|
"socket.io",
|
|
"cluster",
|
|
"adapter"
|
|
]
|
|
}
|