@helipod/docstore-sqlite 0.1.0 → 0.1.2

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 +16 -0
  2. package/package.json +5 -5
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # @helipod/docstore-sqlite
2
+
3
+ The SQLite implementation of the Helipod `DocStore` — the zero-config default storage backend.
4
+
5
+ This adapter implements the MVCC document-log storage seam defined by
6
+ `@helipod/docstore` on top of SQLite. It is the backend Helipod uses out of the
7
+ box for local development and single-node deployments: no configuration, one
8
+ database file under the data directory. Under Bun it uses `bun:sqlite`; under
9
+ Node it uses the built-in `node:sqlite` driver, both behind a small
10
+ `DatabaseAdapter` interface so the store itself stays driver-agnostic.
11
+
12
+ > This is an internal package of the Helipod engine. Most applications should install [`helipod`](https://www.npmjs.com/package/helipod) instead.
13
+
14
+ Part of [Helipod](https://github.com/helipod-sh/helipod) — docs at https://helipod-six.vercel.app/docs
15
+
16
+ License: FSL-1.1-Apache-2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helipod/docstore-sqlite",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "sideEffects": false,
@@ -24,12 +24,12 @@
24
24
  "clean": "rm -rf dist .turbo"
25
25
  },
26
26
  "dependencies": {
27
- "@helipod/docstore": "0.1.0",
28
- "@helipod/id-codec": "0.1.0",
29
- "@helipod/values": "0.1.0"
27
+ "@helipod/docstore": "0.1.2",
28
+ "@helipod/id-codec": "0.1.2",
29
+ "@helipod/values": "0.1.2"
30
30
  },
31
31
  "devDependencies": {
32
- "@helipod/index-key-codec": "0.1.0",
32
+ "@helipod/index-key-codec": "0.1.2",
33
33
  "@types/node": "^22.10.5",
34
34
  "tsup": "^8.3.5",
35
35
  "typescript": "^5.7.2",