@aletheia-labs/store-sqlite 0.1.0 → 0.1.1

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 +7 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,6 +4,13 @@ SQLite-backed implementations of the storage interfaces declared in `@aletheia-l
4
4
 
5
5
  > **Status**: `0.1.0` public baseline. Event, memory, conflict, migrations, and audit-history paths are live.
6
6
 
7
+ ## Requirements
8
+
9
+ - Node 20+.
10
+ - ESM-only. Add `"type": "module"` to your `package.json`, use `.mjs`, or use
11
+ a build tool/runtime that handles ESM. CommonJS `require()` is not shipped in
12
+ `0.1.x`.
13
+
7
14
  ## Quickstart
8
15
 
9
16
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aletheia-labs/store-sqlite",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "SQLite-backed implementations of @aletheia-labs/core storage interfaces.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "better-sqlite3": "^11.5.0",
23
23
  "zod": "^3.23.8",
24
- "@aletheia-labs/core": "0.1.0"
24
+ "@aletheia-labs/core": "0.1.1"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/better-sqlite3": "^7.6.12",