Files
bun.sh/test/package.json
Ciro Spaciari fe74c948cd feat(WebSocketServer) WebSocketServer wrapper + socket.io initial support (#2880)
* WebSocketServer wrapper + socket.io initial support

* fix up backpressure

* fix up backpressure

* fix http address

* add socket.io tests

* add closing tests

* add connection state recovery tests for socket.io

* add handshake test

* add middeware tests for socket.io

* added socket.io socket middleware tests

* add more socket.io test comment/skip  hang tests

* add pending package for tests

* add server attachment servers for socket.io

* add utility-methods tests for socket.io

* rename

* rename

* add messaging-many socket.io tests

* add namespaces tests to socket.io

* skip some tests

* fmt

* add packages to general package.json
2023-05-16 08:48:17 -07:00

30 lines
708 B
JSON

{
"name": "test",
"devDependencies": {
"@types/dedent": "^0.7.0"
},
"dependencies": {
"@swc/core": "^1.3.38",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"bktree-fast": "^0.0.7",
"body-parser": "^1.20.2",
"dedent": "^0.7.0",
"esbuild": "^0.17.16",
"express": "^4.18.2",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"svelte": "^3.55.1",
"typescript": "^5.0.2",
"undici": "^5.20.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"supertest": "^6.1.6"
},
"private": true,
"scripts": {
"typecheck": "tsc --noEmit",
"postinstall": "cd node_modules/bktree-fast && npx node-gyp configure build"
}
}