build: refine rollup configuration
[poolifier.git] / examples / typescript / websocket-server-pool / ws-cluster / package.json
CommitLineData
72855e92
JB
1{
2 "$schema": "https://json.schemastore.org/package",
3 "name": "ws-cluster-pool",
4 "version": "1.0.0",
5 "description": "ws cluster pool",
6 "main": "dist/main.js",
7 "type": "module",
8 "volta": {
1c5b9068 9 "node": "20.9.0",
3445d1c4 10 "pnpm": "8.10.0"
72855e92
JB
11 },
12 "scripts": {
13 "build": "rollup --config",
14 "start": "node dist/main.cjs",
15 "start:esm": "node dist/main.js",
f57c8bae
JB
16 "test": "echo \"Error: no test specified\" && exit 1",
17 "test:requests": "node requests.js"
72855e92
JB
18 },
19 "keywords": [],
20 "author": "",
21 "license": "ISC",
22 "dependencies": {
6083ccfd 23 "poolifier": "^3.0.5",
3bfee5bc 24 "ws": "^8.14.2"
72855e92
JB
25 },
26 "devDependencies": {
45de868e 27 "@rollup/plugin-typescript": "^11.1.5",
92f25194 28 "@types/node": "^20.8.9",
a57d3d12 29 "@types/ws": "^8.5.8",
3445d1c4 30 "rollup": "^4.1.5",
72855e92 31 "rollup-plugin-delete": "^2.0.0",
cbfd97d4 32 "tslib": "^2.6.2",
5641d6f1 33 "typescript": "^5.2.2"
72855e92
JB
34 },
35 "optionalDependencies": {
42e00e3f 36 "bufferutil": "^4.0.8",
72855e92
JB
37 "utf-8-validate": "^6.0.3"
38 }
39}