@dxos/hypercore 0.3.11-main.fc97a54 → 0.3.11-main.ff3a851
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/hypercore",
|
|
3
|
-
"version": "0.3.11-main.
|
|
3
|
+
"version": "0.3.11-main.ff3a851",
|
|
4
4
|
"description": "Hypercore wrapper and utils.",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
@@ -20,28 +20,28 @@
|
|
|
20
20
|
"sodium-native": "^3.2.0",
|
|
21
21
|
"sodium-universal": "^3.0.2",
|
|
22
22
|
"streamx": "^2.12.5",
|
|
23
|
-
"@dxos/
|
|
24
|
-
"@dxos/codec-protobuf": "0.3.11-main.
|
|
25
|
-
"@dxos/
|
|
26
|
-
"@dxos/
|
|
27
|
-
"@dxos/
|
|
28
|
-
"@dxos/
|
|
29
|
-
"@dxos/
|
|
30
|
-
"@dxos/
|
|
31
|
-
"@dxos/typings": "0.3.11-main.
|
|
32
|
-
"@dxos/util": "0.3.11-main.
|
|
23
|
+
"@dxos/crypto": "0.3.11-main.ff3a851",
|
|
24
|
+
"@dxos/codec-protobuf": "0.3.11-main.ff3a851",
|
|
25
|
+
"@dxos/async": "0.3.11-main.ff3a851",
|
|
26
|
+
"@dxos/keys": "0.3.11-main.ff3a851",
|
|
27
|
+
"@dxos/debug": "0.3.11-main.ff3a851",
|
|
28
|
+
"@dxos/random-access-storage": "0.3.11-main.ff3a851",
|
|
29
|
+
"@dxos/invariant": "0.3.11-main.ff3a851",
|
|
30
|
+
"@dxos/node-std": "0.3.11-main.ff3a851",
|
|
31
|
+
"@dxos/typings": "0.3.11-main.ff3a851",
|
|
32
|
+
"@dxos/util": "0.3.11-main.ff3a851"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
+
"@faker-js/faker": "^8.3.1",
|
|
35
36
|
"@types/randombytes": "^2.0.0",
|
|
36
37
|
"@types/readable-stream": "^2.3.9",
|
|
37
38
|
"hypercore": "^9.12.0",
|
|
38
39
|
"hypercore-protocol": "^8.0.7",
|
|
39
40
|
"noise-protocol": "3.0.1",
|
|
40
41
|
"random-access-memory": "^4.1.0",
|
|
41
|
-
"@dxos/
|
|
42
|
-
"@dxos/
|
|
43
|
-
"@dxos/
|
|
44
|
-
"@dxos/util": "0.3.11-main.fc97a54"
|
|
42
|
+
"@dxos/tracing": "0.3.11-main.ff3a851",
|
|
43
|
+
"@dxos/util": "0.3.11-main.ff3a851",
|
|
44
|
+
"@dxos/log": "0.3.11-main.ff3a851"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
// Copyright 2019 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
+
import { faker } from '@faker-js/faker';
|
|
5
6
|
import { expect } from 'chai';
|
|
6
7
|
|
|
7
8
|
import { createKeyPair } from '@dxos/crypto';
|
|
8
|
-
import { faker } from '@dxos/random';
|
|
9
9
|
import { describe, test } from '@dxos/test';
|
|
10
10
|
|
|
11
11
|
import { HypercoreFactory } from './hypercore-factory';
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
// Copyright 2020 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
+
import { faker } from '@faker-js/faker';
|
|
5
6
|
import { expect } from 'chai';
|
|
6
7
|
import ProtocolStream from 'hypercore-protocol';
|
|
7
8
|
|
|
@@ -9,7 +10,6 @@ import { latch } from '@dxos/async';
|
|
|
9
10
|
import { createKeyPair } from '@dxos/crypto';
|
|
10
11
|
import { PublicKey } from '@dxos/keys';
|
|
11
12
|
import { log } from '@dxos/log';
|
|
12
|
-
import { faker } from '@dxos/random';
|
|
13
13
|
import { describe, test } from '@dxos/test';
|
|
14
14
|
|
|
15
15
|
import { HypercoreFactory } from './hypercore-factory';
|
package/src/replicate.test.ts
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
// Copyright 2019 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
+
import { faker } from '@faker-js/faker';
|
|
5
6
|
import { expect } from 'chai';
|
|
6
7
|
|
|
7
8
|
import { latch, sleep, Trigger } from '@dxos/async';
|
|
8
9
|
import { createKeyPair } from '@dxos/crypto';
|
|
9
10
|
import { log } from '@dxos/log';
|
|
10
|
-
import { faker } from '@dxos/random';
|
|
11
11
|
import { createStorage, StorageType } from '@dxos/random-access-storage';
|
|
12
12
|
import { describe, test } from '@dxos/test';
|
|
13
13
|
import { TRACE_PROCESSOR } from '@dxos/tracing';
|