create-kumiko-app 0.4.7 → 0.4.8
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/feature-manifest.json +27 -1
- package/package.json +3 -3
package/feature-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"source": "samples/apps/use-all-bundled APP_FEATURES (composeFeatures includeBundled)",
|
|
3
|
-
"featureCount":
|
|
3
|
+
"featureCount": 42,
|
|
4
4
|
"features": [
|
|
5
5
|
{
|
|
6
6
|
"name": "audit",
|
|
@@ -539,6 +539,32 @@
|
|
|
539
539
|
"recommended": false
|
|
540
540
|
}
|
|
541
541
|
},
|
|
542
|
+
{
|
|
543
|
+
"name": "file-provider-s3-env",
|
|
544
|
+
"description": "Registers an `\"s3-env\"` provider for `file-foundation` that reads one S3 credential set from `process.env` (`S3_BUCKET`/`S3_REGION`/`S3_ACCESS_KEY`/`S3_SECRET_KEY`, optional `S3_ENDPOINT`/`S3_FORCE_PATH_STYLE`) and serves every tenant from one shared bucket — no per-tenant config or secret seeding. Use this for single-bucket S3-compatible deploys (e.g. Hetzner Object Storage); use `file-provider-s3` instead when each tenant needs its own bucket/credentials.",
|
|
545
|
+
"toggleableDefault": null,
|
|
546
|
+
"requires": [
|
|
547
|
+
"file-foundation"
|
|
548
|
+
],
|
|
549
|
+
"optionalRequires": [],
|
|
550
|
+
"configReads": [],
|
|
551
|
+
"exposesApis": [],
|
|
552
|
+
"usesApis": [],
|
|
553
|
+
"extensionsUsed": [
|
|
554
|
+
{
|
|
555
|
+
"extensionName": "fileProvider",
|
|
556
|
+
"entityName": "s3-env"
|
|
557
|
+
}
|
|
558
|
+
],
|
|
559
|
+
"configKeys": [],
|
|
560
|
+
"secrets": [],
|
|
561
|
+
"writeHandlers": [],
|
|
562
|
+
"uiHints": {
|
|
563
|
+
"displayLabel": "File Provider · S3 (env)",
|
|
564
|
+
"category": "storage",
|
|
565
|
+
"recommended": false
|
|
566
|
+
}
|
|
567
|
+
},
|
|
542
568
|
{
|
|
543
569
|
"name": "files",
|
|
544
570
|
"description": "Exposes the `fileRef` entity and `createFilesFeature` from the framework core so that uploaded files — tracked in the `file_refs` table by `createFileRoutes` — participate in cross-feature hooks: `user-data-rights-defaults` automatically includes file blobs in GDPR exports and forget flows, and future tenant-lifecycle cleanup will delete all refs on tenant destroy. This feature does not add upload or download routes; those remain in the server bootstrap via the `options.files` parameter.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kumiko-app",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.8",
|
|
4
4
|
"description": "`bun create kumiko-app <name>` — scaffold a new Kumiko app with an interactive feature picker.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"vendor:manifest": "bun run scripts/vendor-manifest.ts"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@cosmicdrift/kumiko-dev-server": "0.
|
|
34
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
33
|
+
"@cosmicdrift/kumiko-dev-server": "0.81.0",
|
|
34
|
+
"@cosmicdrift/kumiko-framework": "0.81.0",
|
|
35
35
|
"@inquirer/prompts": "^7.4.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|