@forklaunch/ws 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js CHANGED
@@ -485,7 +485,7 @@ var ForklaunchWebSocketServer = class extends import_ws4.WebSocketServer {
485
485
  this.eventSchemas = eventSchemas;
486
486
  super.on("connection", (ws, request) => {
487
487
  const forklaunchWs = this.enhanceWebSocket(ws);
488
- this.emit("connection", forklaunchWs, request);
488
+ super.emit("connection", forklaunchWs, request);
489
489
  });
490
490
  }
491
491
  /**
package/lib/index.mjs CHANGED
@@ -457,7 +457,7 @@ var ForklaunchWebSocketServer = class extends WebSocketServer {
457
457
  this.eventSchemas = eventSchemas;
458
458
  super.on("connection", (ws, request) => {
459
459
  const forklaunchWs = this.enhanceWebSocket(ws);
460
- this.emit("connection", forklaunchWs, request);
460
+ super.emit("connection", forklaunchWs, request);
461
461
  });
462
462
  }
463
463
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forklaunch/ws",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Typed framework for ws, by ForkLaunch.",
5
5
  "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
6
6
  "bugs": {
@@ -26,25 +26,24 @@
26
26
  ],
27
27
  "dependencies": {
28
28
  "@asyncapi/parser": "^3.4.0",
29
- "@forklaunch/fastmcp-fork": "^1.0.5",
30
29
  "@types/ws": "^8.18.1",
31
- "ws": "^8.18.3",
32
- "@forklaunch/common": "0.6.23",
33
- "@forklaunch/validator": "0.10.23",
34
- "@forklaunch/core": "0.16.1"
30
+ "ws": "^8.19.0",
31
+ "@forklaunch/common": "0.6.25",
32
+ "@forklaunch/validator": "0.10.25",
33
+ "@forklaunch/core": "0.17.1"
35
34
  },
36
35
  "devDependencies": {
37
- "@eslint/js": "^9.39.1",
38
- "@typescript/native-preview": "7.0.0-dev.20251117.1",
36
+ "@eslint/js": "^9.39.2",
37
+ "@typescript/native-preview": "7.0.0-dev.20260118.1",
39
38
  "jest": "^30.2.0",
40
- "prettier": "^3.6.2",
41
- "ts-jest": "^29.4.5",
39
+ "prettier": "^3.8.0",
40
+ "ts-jest": "^29.4.6",
42
41
  "ts-node": "^10.9.2",
43
42
  "tsup": "^8.5.1",
44
- "typedoc": "^0.28.14",
43
+ "typedoc": "^0.28.16",
45
44
  "typescript": "^5.9.3",
46
- "typescript-eslint": "^8.46.4",
47
- "zod": "^4.1.12"
45
+ "typescript-eslint": "^8.53.0",
46
+ "zod": "^4.3.5"
48
47
  },
49
48
  "scripts": {
50
49
  "build": "tsgo --noEmit && tsup index.ts --format cjs,esm --no-splitting --tsconfig tsconfig.json --outDir lib --dts --clean",