@holo-js/core 0.1.1 → 0.1.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.
@@ -1,6 +1,8 @@
1
1
  import {
2
+ configureHoloRenderingRuntime,
2
3
  createAdapter,
3
4
  createDialect,
5
+ createGeneratedBroadcastManifest,
4
6
  createHolo,
5
7
  createRuntimeConnectionOptions,
6
8
  createRuntimeLogger,
@@ -9,17 +11,23 @@ import {
9
11
  holoRuntimeInternals,
10
12
  initializeHolo,
11
13
  isSupportedDatabaseDriver,
14
+ loadGeneratedBroadcastManifest,
12
15
  loadGeneratedProjectRegistry,
13
16
  parseDatabaseDriver,
14
17
  peekHolo,
18
+ reconfigureOptionalHoloSubsystems,
15
19
  registryInternals,
20
+ resetHoloRenderingRuntime,
16
21
  resetHoloRuntime,
22
+ resetOptionalHoloSubsystems,
17
23
  resolveGeneratedProjectRegistryPath,
18
24
  resolveRuntimeConnectionManagerOptions
19
- } from "../chunk-SVCNZBIQ.mjs";
25
+ } from "../chunk-AD2ZYGLN.mjs";
20
26
  export {
27
+ configureHoloRenderingRuntime,
21
28
  createAdapter,
22
29
  createDialect,
30
+ createGeneratedBroadcastManifest,
23
31
  createHolo,
24
32
  createRuntimeConnectionOptions,
25
33
  createRuntimeLogger,
@@ -28,11 +36,15 @@ export {
28
36
  holoRuntimeInternals,
29
37
  initializeHolo,
30
38
  isSupportedDatabaseDriver,
39
+ loadGeneratedBroadcastManifest,
31
40
  loadGeneratedProjectRegistry,
32
41
  parseDatabaseDriver,
33
42
  peekHolo,
43
+ reconfigureOptionalHoloSubsystems,
34
44
  registryInternals,
45
+ resetHoloRenderingRuntime,
35
46
  resetHoloRuntime,
47
+ resetOptionalHoloSubsystems,
36
48
  resolveGeneratedProjectRegistryPath,
37
49
  resolveRuntimeConnectionManagerOptions
38
50
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holo-js/core",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Holo-JS Framework - Portable runtime core",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -28,15 +28,67 @@
28
28
  "test": "vitest --run"
29
29
  },
30
30
  "dependencies": {
31
- "@holo-js/config": "^0.1.1",
32
- "@holo-js/db": "^0.1.1",
33
- "@holo-js/events": "^0.1.1",
34
- "@holo-js/queue": "^0.1.1",
35
- "@holo-js/queue-db": "^0.1.1",
36
- "@holo-js/storage": "^0.1.1",
31
+ "@holo-js/config": "^0.1.3",
32
+ "@holo-js/db": "^0.1.3",
37
33
  "esbuild": "^0.27.4"
38
34
  },
35
+ "peerDependencies": {
36
+ "@holo-js/auth": "^0.1.3",
37
+ "@holo-js/auth-clerk": "^0.1.3",
38
+ "@holo-js/auth-social": "^0.1.3",
39
+ "@holo-js/auth-workos": "^0.1.3",
40
+ "@holo-js/authorization": "^0.1.3",
41
+ "@holo-js/mail": "^0.1.3",
42
+ "@holo-js/notifications": "^0.1.3",
43
+ "@holo-js/queue": "^0.1.3",
44
+ "@holo-js/security": "^0.1.3",
45
+ "@holo-js/session": "^0.1.3",
46
+ "@holo-js/storage": "^0.1.3"
47
+ },
48
+ "peerDependenciesMeta": {
49
+ "@holo-js/auth": {
50
+ "optional": true
51
+ },
52
+ "@holo-js/auth-clerk": {
53
+ "optional": true
54
+ },
55
+ "@holo-js/auth-social": {
56
+ "optional": true
57
+ },
58
+ "@holo-js/auth-workos": {
59
+ "optional": true
60
+ },
61
+ "@holo-js/authorization": {
62
+ "optional": true
63
+ },
64
+ "@holo-js/mail": {
65
+ "optional": true
66
+ },
67
+ "@holo-js/notifications": {
68
+ "optional": true
69
+ },
70
+ "@holo-js/queue": {
71
+ "optional": true
72
+ },
73
+ "@holo-js/security": {
74
+ "optional": true
75
+ },
76
+ "@holo-js/session": {
77
+ "optional": true
78
+ },
79
+ "@holo-js/storage": {
80
+ "optional": true
81
+ }
82
+ },
39
83
  "devDependencies": {
84
+ "@holo-js/auth": "^0.1.3",
85
+ "@holo-js/authorization": "^0.1.3",
86
+ "@holo-js/events": "^0.1.3",
87
+ "@holo-js/mail": "^0.1.3",
88
+ "@holo-js/notifications": "^0.1.3",
89
+ "@holo-js/queue-db": "^0.1.3",
90
+ "@holo-js/session": "^0.1.3",
91
+ "@holo-js/storage": "^0.1.3",
40
92
  "@types/node": "^22.10.2",
41
93
  "tsup": "^8.3.5",
42
94
  "typescript": "^5.7.2",