create-kumiko-app 0.4.192 → 0.4.194
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 +22 -1
- package/package.json +4 -4
package/feature-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"source": "samples/apps/use-all-bundled APP_FEATURES (composeFeatures includeBundled + signup)",
|
|
3
|
-
"featureCount":
|
|
3
|
+
"featureCount": 65,
|
|
4
4
|
"features": [
|
|
5
5
|
{
|
|
6
6
|
"name": "admin-shell",
|
|
@@ -598,6 +598,27 @@
|
|
|
598
598
|
"recommended": false
|
|
599
599
|
}
|
|
600
600
|
},
|
|
601
|
+
{
|
|
602
|
+
"name": "file-derivatives",
|
|
603
|
+
"description": "Declares the `derivativeRenderer` extension point. `ctx.derivatives.variant(fileRefId, spec, name)` derives a variant of a tracked FileRef the first time it's requested and reuses the stored result afterwards (derive-on-first-use, keyed by a hash of the spec). Mount at least one `derivatives-*` renderer feature alongside this one — without a registered renderer for the FileRef's MIME type, every `variant(...)` call throws.",
|
|
604
|
+
"toggleableDefault": null,
|
|
605
|
+
"requires": [
|
|
606
|
+
"file-foundation"
|
|
607
|
+
],
|
|
608
|
+
"optionalRequires": [],
|
|
609
|
+
"configReads": [],
|
|
610
|
+
"exposesApis": [],
|
|
611
|
+
"usesApis": [],
|
|
612
|
+
"extensionsUsed": [],
|
|
613
|
+
"configKeys": [],
|
|
614
|
+
"secrets": [],
|
|
615
|
+
"writeHandlers": [],
|
|
616
|
+
"uiHints": {
|
|
617
|
+
"displayLabel": "File Derivatives",
|
|
618
|
+
"category": "storage",
|
|
619
|
+
"recommended": false
|
|
620
|
+
}
|
|
621
|
+
},
|
|
601
622
|
{
|
|
602
623
|
"name": "file-foundation",
|
|
603
624
|
"description": "Defines the `fileProvider` extension point and a per-tenant `provider` config key that selects which registered storage plugin to use at runtime. Call `createFileProviderForTenant(ctx, tenantId)` to get a `FileStorageProvider` — use this feature together with at least one `file-provider-*` feature; the `files` feature builds on top of it for tracked `FileRef` entities with GDPR hooks.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kumiko-app",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.194",
|
|
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,9 +30,9 @@
|
|
|
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.
|
|
35
|
-
"@cosmicdrift/kumiko-server-runtime": "0.
|
|
33
|
+
"@cosmicdrift/kumiko-dev-server": "0.190.0",
|
|
34
|
+
"@cosmicdrift/kumiko-framework": "0.190.0",
|
|
35
|
+
"@cosmicdrift/kumiko-server-runtime": "0.190.0",
|
|
36
36
|
"@inquirer/core": "^10.0.0",
|
|
37
37
|
"@inquirer/prompts": "^7.4.0"
|
|
38
38
|
},
|