@helipod/runtime-embedded 0.1.0 → 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.
Files changed (2) hide show
  1. package/README.md +20 -0
  2. package/package.json +14 -14
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # @helipod/runtime-embedded
2
+
3
+ Composes storage, transactor, executor, and sync into one embeddable Helipod runtime.
4
+
5
+ This package is the single-process engine core: it wires the document store, the
6
+ transactor, the function executor, and the reactive sync tier together, boots any
7
+ composed components and their background drivers, and drives the write fan-out that
8
+ wakes subscriptions after each commit. It exposes in-memory loopback connections so a
9
+ client can talk to the engine without a network hop, alongside the WebSocket path.
10
+
11
+ `helipod dev`, `helipod serve`, and the single-binary build produced by
12
+ `helipod build` all boot their engine through this package, so every entrypoint runs
13
+ the same runtime with the same behavior.
14
+
15
+ > This is an internal package of the Helipod engine. Most applications should install
16
+ > [`helipod`](https://www.npmjs.com/package/helipod) instead.
17
+
18
+ Part of [Helipod](https://github.com/helipod-sh/helipod) — docs at https://helipod-six.vercel.app/docs
19
+
20
+ License: FSL-1.1-Apache-2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helipod/runtime-embedded",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "sideEffects": false,
@@ -18,25 +18,25 @@
18
18
  ],
19
19
  "scripts": {
20
20
  "build": "tsup",
21
- "test": "vitest run",
21
+ "test": "vitest run --testTimeout=60000 --hookTimeout=60000",
22
22
  "typecheck": "tsc --noEmit",
23
23
  "clean": "rm -rf dist .turbo"
24
24
  },
25
25
  "dependencies": {
26
- "@helipod/component": "0.1.0",
27
- "@helipod/docstore": "0.1.0",
28
- "@helipod/docstore-d1": "0.1.0",
29
- "@helipod/errors": "0.1.0",
30
- "@helipod/executor": "0.1.0",
31
- "@helipod/id-codec": "0.1.0",
32
- "@helipod/index-key-codec": "0.1.0",
33
- "@helipod/query-engine": "0.1.0",
34
- "@helipod/sync": "0.1.0",
35
- "@helipod/transactor": "0.1.0",
36
- "@helipod/values": "0.1.0"
26
+ "@helipod/component": "0.1.3",
27
+ "@helipod/docstore": "0.1.3",
28
+ "@helipod/docstore-d1": "0.1.3",
29
+ "@helipod/errors": "0.1.3",
30
+ "@helipod/executor": "0.1.3",
31
+ "@helipod/id-codec": "0.1.3",
32
+ "@helipod/index-key-codec": "0.1.3",
33
+ "@helipod/query-engine": "0.1.3",
34
+ "@helipod/sync": "0.1.3",
35
+ "@helipod/transactor": "0.1.3",
36
+ "@helipod/values": "0.1.3"
37
37
  },
38
38
  "devDependencies": {
39
- "@helipod/docstore-sqlite": "0.1.0",
39
+ "@helipod/docstore-sqlite": "0.1.3",
40
40
  "@types/better-sqlite3": "^7.6.12",
41
41
  "better-sqlite3": "^11.8.0",
42
42
  "tsup": "^8.3.5",