@dxos/signal 2.29.2-dev.8c2ad8e5 → 2.29.2-dev.dd10aa83

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/signal",
3
- "version": "2.29.2-dev.8c2ad8e5",
3
+ "version": "2.29.2-dev.dd10aa83",
4
4
  "description": "DXOS signal server.",
5
5
  "homepage": "https://github.com/dxos/protocol/tree/master/packages/protocol-plugin-replicator#readme",
6
6
  "bugs": {
@@ -25,8 +25,8 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "@azure/abort-controller": "^1.0.1",
28
- "@dxos/broadcast": "2.29.2-dev.8c2ad8e5",
29
- "@dxos/crypto": "2.29.2-dev.8c2ad8e5",
28
+ "@dxos/broadcast": "2.29.2-dev.dd10aa83",
29
+ "@dxos/crypto": "2.29.2-dev.dd10aa83",
30
30
  "@hyperswarm/dht": "^4.0.1",
31
31
  "buffer-json-encoding": "^1.0.2",
32
32
  "debug": "^4.3.3",
@@ -63,6 +63,7 @@
63
63
  "@dxos/eslint-plugin": "~1.0.27",
64
64
  "@dxos/protocols-toolchain": "2.29.1",
65
65
  "@geut/discovery-swarm-webrtc": "^4.0.2",
66
+ "@koush/wrtc": "^0.5.3",
66
67
  "@types/debug": "^4.1.7",
67
68
  "@types/end-of-stream": "^1.4.0",
68
69
  "@types/jest": "^26.0.7",
@@ -75,8 +76,7 @@
75
76
  "graphology-shortest-path": "^1.3.4",
76
77
  "graphology-types": "^0.23.0",
77
78
  "jest": "^26.6.3",
78
- "typescript": "^4.5.2",
79
- "wrtc": "^0.4.7"
79
+ "typescript": "^4.5.2"
80
80
  },
81
81
  "publishConfig": {
82
82
  "access": "public"
package/src/shims.d.ts CHANGED
@@ -2,4 +2,5 @@
2
2
  // Copyright 2020 DXOS.org
3
3
  //
4
4
 
5
+ declare module '@koush/wrtc'
5
6
  declare module 'monotonic-timestamp';
@@ -3,10 +3,10 @@
3
3
  //
4
4
 
5
5
  import swarm from '@geut/discovery-swarm-webrtc';
6
+ import wrtc from '@koush/wrtc';
6
7
  import crypto from 'crypto';
7
8
  import debug from 'debug';
8
9
  import pEvent from 'p-event';
9
- import wrtc from 'wrtc';
10
10
 
11
11
  import { createBroker } from './broker';
12
12