@vosjs/cli 0.15.0 → 0.17.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/dist/{chunk-HGLKXIXH.js → chunk-Q5NF5EN2.js} +717 -277
- package/dist/chunk-Q5NF5EN2.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/{run-37GVK3VS.js → run-V4JIEWVF.js} +2 -2
- package/package.json +5 -5
- package/schema/doc.schema.json +25 -6
- package/dist/chunk-HGLKXIXH.js.map +0 -1
- /package/dist/{run-37GVK3VS.js.map → run-V4JIEWVF.js.map} +0 -0
package/dist/cli.js
CHANGED
|
@@ -495,7 +495,7 @@ async function cmdCheck(argv) {
|
|
|
495
495
|
return result.ok ? EXIT_OK : EXIT_ERROR;
|
|
496
496
|
}
|
|
497
497
|
async function delegate(argv, viaAlias = false) {
|
|
498
|
-
const { run } = await import("./run-
|
|
498
|
+
const { run } = await import("./run-V4JIEWVF.js");
|
|
499
499
|
if (viaAlias && argv[0]) {
|
|
500
500
|
process.stderr.write(
|
|
501
501
|
`note: "vos voila ${argv[0]}" is now "vos ${argv[0]}".
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vosjs/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "The vos CLI: record the real product from a scripted browser flow, auto-zoom from the cursor track, cut as data in doc.json, render deterministic video and stills, deliver a release's media per destination spec, and sync with vos.so. One binary, every verb, MIT.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
"playwright": "^1.49.0",
|
|
51
51
|
"@vosjs/core": "^0.23.2",
|
|
52
52
|
"@vosjs/editor": "^1.3.1",
|
|
53
|
-
"@vosjs/elements": "^0.8.1",
|
|
54
53
|
"@vosjs/render-core": "^0.2.1",
|
|
55
54
|
"@vosjs/shared": "^0.4.1",
|
|
56
|
-
"@vosjs/
|
|
57
|
-
"@vosjs/
|
|
58
|
-
"@vosjs/tween": "^0.8.2"
|
|
55
|
+
"@vosjs/elements": "^0.8.1",
|
|
56
|
+
"@vosjs/studio-core": "^0.7.0",
|
|
57
|
+
"@vosjs/tween": "^0.8.2",
|
|
58
|
+
"@vosjs/timeline": "^0.4.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/node": "^22",
|
package/schema/doc.schema.json
CHANGED
|
@@ -516,7 +516,7 @@
|
|
|
516
516
|
"type": "number",
|
|
517
517
|
"minimum": 0,
|
|
518
518
|
"maximum": 1,
|
|
519
|
-
"description": "
|
|
519
|
+
"description": "the card shadow's strength 0..1, shared by three layered shadows whose blur and offset grow (3/1, 14/6, 48/22 design px) while each stays at a low alpha, so the card reads as lifted rather than sitting in a dark pool"
|
|
520
520
|
},
|
|
521
521
|
"shadowContact": {
|
|
522
522
|
"type": "number",
|
|
@@ -674,6 +674,16 @@
|
|
|
674
674
|
},
|
|
675
675
|
"wordmark": {
|
|
676
676
|
"type": "string"
|
|
677
|
+
},
|
|
678
|
+
"mark": {
|
|
679
|
+
"type": "object",
|
|
680
|
+
"required": ["key", "aspect"],
|
|
681
|
+
"additionalProperties": false,
|
|
682
|
+
"properties": {
|
|
683
|
+
"key": { "type": "string" },
|
|
684
|
+
"aspect": { "type": "number", "exclusiveMinimum": 0 }
|
|
685
|
+
},
|
|
686
|
+
"description": "the brand's mark as an image (a take-dir path or a URL the render page can load) with its width-over-height, drawn above the wordmark; a wide mark (a stylised wordmark asset) stands alone. vos deliver fetches BRAND.md's logoUrl into the take's brand/ folder and sets this"
|
|
677
687
|
}
|
|
678
688
|
},
|
|
679
689
|
"description": "the end card the clip closes on: a hold on the last frame (default 2.5 s) while the card recedes and the words rise as the house title, caption and label overlays. The clip's last frame is its poster"
|
|
@@ -915,12 +925,21 @@
|
|
|
915
925
|
"description": "text kind: wrap budget as a FRACTION of the frame width (greedy word wrap at measured widths; absent = lines break only on \\n; no intra-word breaks)"
|
|
916
926
|
},
|
|
917
927
|
"shadow": {
|
|
918
|
-
"
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
928
|
+
"oneOf": [
|
|
929
|
+
{
|
|
930
|
+
"enum": [
|
|
931
|
+
"none",
|
|
932
|
+
"soft",
|
|
933
|
+
"strong"
|
|
934
|
+
]
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"type": "number",
|
|
938
|
+
"minimum": 0,
|
|
939
|
+
"maximum": 1
|
|
940
|
+
}
|
|
922
941
|
],
|
|
923
|
-
"description": "media kinds: the card shadow
|
|
942
|
+
"description": "media kinds: the card shadow, 'none' | 'soft' | 'strong' (absent = 'soft', the house picture-in-picture look). Text kind: the legibility shadow STRENGTH 0..1 (absent = the preset's; 0 = none, which words on a plate ground want)"
|
|
924
943
|
},
|
|
925
944
|
"border": {
|
|
926
945
|
"type": "object",
|