@dxos/echo-generator 0.8.4-main.84f28bd → 0.8.4-main.a4bbb77

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/echo-generator",
3
- "version": "0.8.4-main.84f28bd",
3
+ "version": "0.8.4-main.a4bbb77",
4
4
  "description": "ECHO data generator for testing.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -10,6 +10,7 @@
10
10
  "type": "module",
11
11
  "exports": {
12
12
  ".": {
13
+ "source": "./src/index.ts",
13
14
  "types": "./dist/types/src/index.d.ts",
14
15
  "browser": "./dist/lib/browser/index.mjs",
15
16
  "node": "./dist/lib/node-esm/index.mjs"
@@ -24,24 +25,23 @@
24
25
  "src"
25
26
  ],
26
27
  "dependencies": {
27
- "@automerge/automerge": "3.0.0",
28
- "effect": "3.16.13",
29
- "@dxos/client": "0.8.4-main.84f28bd",
30
- "@dxos/echo-schema": "0.8.4-main.84f28bd",
31
- "@dxos/echo-db": "0.8.4-main.84f28bd",
32
- "@dxos/invariant": "0.8.4-main.84f28bd",
33
- "@dxos/live-object": "0.8.4-main.84f28bd",
34
- "@dxos/log": "0.8.4-main.84f28bd",
35
- "@dxos/node-std": "0.8.4-main.84f28bd",
36
- "@dxos/schema": "0.8.4-main.84f28bd",
37
- "@dxos/util": "0.8.4-main.84f28bd"
28
+ "@automerge/automerge": "3.1.2",
29
+ "effect": "3.18.3",
30
+ "@dxos/client": "0.8.4-main.a4bbb77",
31
+ "@dxos/echo-schema": "0.8.4-main.a4bbb77",
32
+ "@dxos/echo-db": "0.8.4-main.a4bbb77",
33
+ "@dxos/invariant": "0.8.4-main.a4bbb77",
34
+ "@dxos/log": "0.8.4-main.a4bbb77",
35
+ "@dxos/live-object": "0.8.4-main.a4bbb77",
36
+ "@dxos/util": "0.8.4-main.a4bbb77",
37
+ "@dxos/node-std": "0.8.4-main.a4bbb77"
38
38
  },
39
39
  "devDependencies": {
40
- "@dxos/random": "0.8.4-main.84f28bd"
40
+ "@dxos/random": "0.8.4-main.a4bbb77"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "effect": "^3.13.3",
44
- "@dxos/random": "0.8.4-main.84f28bd"
44
+ "@dxos/random": "0.8.4-main.a4bbb77"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"
package/src/data.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  import { next as A } from '@automerge/automerge';
6
6
  import { Schema } from 'effect';
7
7
 
8
- import { createDocAccessor, type Space } from '@dxos/client/echo';
8
+ import { type Space, createDocAccessor } from '@dxos/client/echo';
9
9
  import { EchoObject, Ref } from '@dxos/echo-schema';
10
10
  import { faker } from '@dxos/random';
11
11
 
@@ -11,7 +11,7 @@ import { getObjectCore } from '@dxos/echo-db';
11
11
  import { TypedObject, getType } from '@dxos/echo-schema';
12
12
  import { faker } from '@dxos/random';
13
13
 
14
- import { createSpaceObjectGenerator, createTestObjectGenerator, TestSchemaType } from './data';
14
+ import { TestSchemaType, createSpaceObjectGenerator, createTestObjectGenerator } from './data';
15
15
  import { SpaceObjectGenerator } from './generator';
16
16
 
17
17
  faker.seed(3);
package/src/generator.ts CHANGED
@@ -6,9 +6,9 @@ import { type Schema } from 'effect';
6
6
 
7
7
  import { Filter, type Space } from '@dxos/client/echo';
8
8
  import { type AnyLiveObject } from '@dxos/echo-db';
9
- import { getTypeAnnotation, EchoSchema, getSchema } from '@dxos/echo-schema';
9
+ import { EchoSchema, getSchema, getTypeAnnotation } from '@dxos/echo-schema';
10
10
  import { invariant } from '@dxos/invariant';
11
- import { live, isLiveObject, type Live } from '@dxos/live-object';
11
+ import { type Live, isLiveObject, live } from '@dxos/live-object';
12
12
  import { faker } from '@dxos/random';
13
13
  import { entries, range } from '@dxos/util';
14
14
 
package/src/index.ts CHANGED
@@ -4,5 +4,5 @@
4
4
 
5
5
  export * from './data';
6
6
  export * from './generator';
7
- export * from './types';
7
+ export type * from './types';
8
8
  export * from './util';