werift 0.24.2 → 0.24.3

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.
@@ -36,7 +36,7 @@ export declare class RTCRtpReceiver {
36
36
  readonly receiveLastSRTimestamp: {
37
37
  [ssrc: number]: number;
38
38
  };
39
- readonly onPacketLost: Event<[import("werift-rtp/src/rtcp/rtpfb/nack").GenericNack]>;
39
+ readonly onPacketLost: Event<[import("../imports/rtp").GenericNack]>;
40
40
  readonly onRtcp: Event<[RtcpPacket]>;
41
41
  dtlsTransport: RTCDtlsTransport;
42
42
  sdesMid?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "werift",
3
- "version": "0.24.2",
3
+ "version": "0.24.3",
4
4
  "description": "WebRTC Implementation for TypeScript (Node.js)",
5
5
  "keywords": [
6
6
  "WebRTC",
@@ -38,7 +38,7 @@
38
38
  "compile:esm": "esbuild src/index.ts src/nonstandard/index.ts --bundle --packages=external --platform=node --format=esm --target=es2022 --outdir=lib --out-extension:.js=.mjs && node lib/index.mjs",
39
39
  "depcheck": "npx depcheck --ignores='@typescript-eslint/*,eslint-*'",
40
40
  "deploy": "npm run build && npm publish && cd ../../import-test && npm test",
41
- "deploy:alpha": "npm run build && npm publish --tag alpha",
41
+ "deploy:alpha": "npm run build && npm publish --tag alpha && cd ../../import-test && npm test",
42
42
  "doc": "rm -rf doc && typedoc --excludePrivate --disableSources --excludeInternal --plugin typedoc-plugin-markdown --out doc ./src/index.ts",
43
43
  "format": "biome check --write src tests",
44
44
  "knip": "knip",
@@ -59,12 +59,7 @@
59
59
  "debug": "4.4.0",
60
60
  "mediabunny": "^1.45.2",
61
61
  "multicast-dns": "^7.2.5",
62
- "tweetnacl": "^1.0.3",
63
- "werift-common": "*",
64
- "werift-dtls": "*",
65
- "werift-ice": "*",
66
- "werift-rtp": "*",
67
- "werift-sctp": "*"
62
+ "tweetnacl": "^1.0.3"
68
63
  },
69
64
  "engines": {
70
65
  "node": ">=16"