@rulvar/store-sqlite 1.3.1 → 1.4.0

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 +26 -0
  2. package/package.json +3 -3
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # @rulvar/store-sqlite
2
+
3
+ SQLite journal store implementing the rulvar storage SPI with the lease
4
+ capability and a fencing epoch, on the builtin `node:sqlite` driver; the
5
+ reference implementation for community stores. Exports `SqliteStore`.
6
+
7
+ Part of [rulvar](https://rulvar.com), an embeddable TypeScript engine
8
+ for durable, budget-bounded multi-agent LLM workflows, where a completed
9
+ LLM call is never paid for twice. Full documentation:
10
+ [docs.rulvar.com](https://docs.rulvar.com).
11
+
12
+ ## Install
13
+
14
+ ```bash
15
+ pnpm add @rulvar/core @rulvar/store-sqlite
16
+ ```
17
+
18
+ ## Documentation
19
+
20
+ - [Stores](https://docs.rulvar.com/guide/stores)
21
+ - [Store authors](https://docs.rulvar.com/guide/store-authors)
22
+ - [API reference](https://docs.rulvar.com/api/%40rulvar/store-sqlite/)
23
+
24
+ ## License
25
+
26
+ [Apache-2.0](https://github.com/o-stepper/rulvar/blob/main/LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rulvar/store-sqlite",
3
- "version": "1.3.1",
3
+ "version": "1.4.0",
4
4
  "description": "rulvar SQLite store implementing JournalStore and LeasableStore with a fencing epoch.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -22,13 +22,13 @@
22
22
  "access": "public"
23
23
  },
24
24
  "dependencies": {
25
- "@rulvar/core": "1.3.1"
25
+ "@rulvar/core": "1.4.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^22.20.0",
29
29
  "tsdown": "^0.22.3",
30
30
  "typescript": "~6.0.3",
31
- "@rulvar/store-conformance": "1.3.1"
31
+ "@rulvar/store-conformance": "1.4.0"
32
32
  },
33
33
  "repository": {
34
34
  "type": "git",