@lunora/db 0.0.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.
- package/README.md +18 -0
- package/package.json +31 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @lunora/db
|
|
2
|
+
|
|
3
|
+
> ⚠️ **Placeholder release.** This package name is reserved for the [Lunora](https://lunora.sh) framework. The real `1.0.0-alpha` release is coming soon.
|
|
4
|
+
|
|
5
|
+
TanStack DB binding: typed, live-synced collections and a durable offline outbox over the Lunora client
|
|
6
|
+
|
|
7
|
+
Lunora is a type-safe, real-time backend framework for Cloudflare Workers + Durable Objects with a Vite-first developer experience.
|
|
8
|
+
|
|
9
|
+
- Website: https://lunora.sh
|
|
10
|
+
- Repository: https://github.com/anolilab/lunora
|
|
11
|
+
|
|
12
|
+
## Status
|
|
13
|
+
|
|
14
|
+
This is a `0.0.0` placeholder to reserve the npm name. Do not depend on it yet — APIs and exports are not published in this version. Watch the repository for the alpha release.
|
|
15
|
+
|
|
16
|
+
## License
|
|
17
|
+
|
|
18
|
+
FSL-1.1-Apache-2.0
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lunora/db",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "TanStack DB binding: typed, live-synced collections and a durable offline outbox over the Lunora client",
|
|
5
|
+
"license": "FSL-1.1-Apache-2.0",
|
|
6
|
+
"homepage": "https://lunora.sh",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/anolilab/lunora.git",
|
|
10
|
+
"directory": "packages/db"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/anolilab/lunora/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"lunora",
|
|
17
|
+
"cloudflare",
|
|
18
|
+
"workers",
|
|
19
|
+
"durable-objects",
|
|
20
|
+
"tanstack-db",
|
|
21
|
+
"offline-first",
|
|
22
|
+
"optimistic-updates",
|
|
23
|
+
"live-query"
|
|
24
|
+
],
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"README.md"
|
|
30
|
+
]
|
|
31
|
+
}
|