refactor: cleanup TS example
[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": {
d5eb4a90 9 "node": "20.8.1",
5f61c433 10 "pnpm": "8.9.2"
02999424
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"
02999424
JB
18 },
19 "keywords": [],
20 "author": "",
21 "license": "ISC",
22 "dependencies": {
1e090e4d 23 "poolifier": "^3.0.0",
da1f91fd 24 "ws": "^8.14.2"
02999424
JB
25 },
26 "devDependencies": {
95810b10 27 "@rollup/plugin-typescript": "^11.1.5",
3ff2b910 28 "@types/node": "^20.8.6",
05208d11 29 "@types/ws": "^8.5.7",
3ff2b910 30 "rollup": "^4.1.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": {
36 "bufferutil": "^4.0.7",
37 "utf-8-validate": "^6.0.3"
38 }
39}