build(deps): bump poolifier
[poolifier.git] / examples / typescript / websocket-server-pool / ws-hybrid / package.json
1 {
2 "$schema": "https://json.schemastore.org/package",
3 "name": "ws-hybrid-pool",
4 "version": "1.0.0",
5 "description": "ws hybrid pool",
6 "main": "dist/main.js",
7 "type": "module",
8 "volta": {
9 "node": "20.11.1",
10 "pnpm": "8.15.4"
11 },
12 "scripts": {
13 "build": "rollup --config --configPlugin typescript",
14 "start": "node --enable-source-maps dist/main.cjs",
15 "start:esm": "node --enable-source-maps dist/main.js",
16 "test": "echo \"Error: no test specified\" && exit 1",
17 "test:requests": "node requests.js"
18 },
19 "keywords": [],
20 "author": "",
21 "license": "ISC",
22 "dependencies": {
23 "poolifier": "^3.1.22",
24 "ws": "^8.16.0"
25 },
26 "devDependencies": {
27 "@rollup/plugin-typescript": "^11.1.6",
28 "@types/node": "^20.11.28",
29 "@types/ws": "^8.5.10",
30 "rollup": "^4.13.0",
31 "rollup-plugin-delete": "^2.0.0",
32 "tslib": "^2.6.2",
33 "typescript": "^5.4.2"
34 },
35 "optionalDependencies": {
36 "bufferutil": "^4.0.8",
37 "utf-8-validate": "^6.0.3"
38 }
39 }