@lunora/db 1.0.0-alpha.64 → 1.0.0-alpha.65

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 +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -89,7 +89,7 @@ Keep a **single `db` instance**, and treat its collections as the one source of
89
89
  truth per table — don't mirror rows into your own store. A derived index (a tree,
90
90
  a search index, an undo capture) built from a copy of the rows can silently read
91
91
  stale data while the UI renders through `useLiveQuery`. See [One source of truth
92
- per table](https://lunora.sh/docs/addons/db#one-source-of-truth-per-table).
92
+ per table](https://lunora.sh/docs/packages/db#one-source-of-truth-per-table).
93
93
 
94
94
  ### Local-first sync engine
95
95
 
@@ -103,7 +103,7 @@ every sync tick). The framework adapters add a `useMutator` / `createMutator` /
103
103
  `mutator` hook over a bound handle. See the
104
104
  **[local-first guide](https://lunora.sh/docs/concepts/local-first)**.
105
105
 
106
- > This README covers the basics. For the full API, options, and guides, see the **[documentation](https://lunora.sh/docs/addons/db)**.
106
+ > This README covers the basics. For the full API, options, and guides, see the **[documentation](https://lunora.sh/docs/packages/db)**.
107
107
 
108
108
  ## Related
109
109
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunora/db",
3
- "version": "1.0.0-alpha.64",
3
+ "version": "1.0.0-alpha.65",
4
4
  "description": "TanStack DB binding: typed, live-synced collections and a durable offline outbox over the Lunora client",
5
5
  "keywords": [
6
6
  "cloudflare",
@@ -54,8 +54,8 @@
54
54
  "access": "public"
55
55
  },
56
56
  "dependencies": {
57
- "@lunora/client": "1.0.0-alpha.60",
58
- "@lunora/errors": "1.0.0-alpha.24"
57
+ "@lunora/client": "1.0.0-alpha.61",
58
+ "@lunora/errors": "1.0.0-alpha.25"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "@tanstack/db": "^0.6.0",