refactor: cleanup task functions handling
[poolifier.git] / examples / typescript / websocket-server-pool / ws-hybrid / package.json
CommitLineData
02999424
JB
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": {
1c5b9068 9 "node": "20.9.0",
715a408a 10 "pnpm": "8.10.5"
02999424
JB
11 },
12 "scripts": {
c2515a41 13 "build": "rollup --config --configPlugin typescript",
d7154f8c
JB
14 "start": "node --enable-source-maps dist/main.cjs",
15 "start:esm": "node --enable-source-maps dist/main.js",
f57c8bae
JB
16 "test": "echo \"Error: no test specified\" && exit 1",
17 "test:requests": "node requests.js"
02999424
JB
18 },
19 "keywords": [],
20 "author": "",
21 "license": "ISC",
22 "dependencies": {
b855082c 23 "poolifier": "^3.0.5",
da1f91fd 24 "ws": "^8.14.2"
02999424
JB
25 },
26 "devDependencies": {
95810b10 27 "@rollup/plugin-typescript": "^11.1.5",
fec7141e 28 "@types/node": "^20.9.2",
9b274eb1 29 "@types/ws": "^8.5.9",
26ef30c3 30 "rollup": "^4.5.0",
02999424 31 "rollup-plugin-delete": "^2.0.0",
daaf068c 32 "tslib": "^2.6.2",
fab259b4 33 "typescript": "^5.2.2"
02999424
JB
34 },
35 "optionalDependencies": {
bbf92b1d 36 "bufferutil": "^4.0.8",
02999424
JB
37 "utf-8-validate": "^6.0.3"
38 }
39}