@lunora/storage 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.
Files changed (2) hide show
  1. package/README.md +18 -0
  2. package/package.json +31 -0
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # @lunora/storage
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
+ R2-backed storage for Lunora: typed buckets and signed URLs
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/storage",
3
+ "version": "0.0.0",
4
+ "description": "R2-backed storage for Lunora: typed buckets and signed URLs",
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/storage"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/anolilab/lunora/issues"
14
+ },
15
+ "keywords": [
16
+ "lunora",
17
+ "cloudflare",
18
+ "workers",
19
+ "durable-objects",
20
+ "r2",
21
+ "storage",
22
+ "signed-url",
23
+ "presigned-url"
24
+ ],
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "files": [
29
+ "README.md"
30
+ ]
31
+ }