@vosjs/cli 0.11.0 → 0.12.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-3W3XD6HL.js → chunk-DEE2KCDO.js} +13 -5
- package/dist/chunk-DEE2KCDO.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/{run-U3NAAIKH.js → run-GY5QMKJ4.js} +2 -2
- package/package.json +6 -6
- package/schema/digest.schema.json +5 -1
- package/dist/chunk-3W3XD6HL.js.map +0 -1
- /package/dist/{run-U3NAAIKH.js.map → run-GY5QMKJ4.js.map} +0 -0
package/dist/cli.js
CHANGED
|
@@ -484,7 +484,7 @@ async function cmdCheck(argv) {
|
|
|
484
484
|
return result.ok ? EXIT_OK : EXIT_ERROR;
|
|
485
485
|
}
|
|
486
486
|
async function delegate(argv, viaAlias = false) {
|
|
487
|
-
const { run } = await import("./run-
|
|
487
|
+
const { run } = await import("./run-GY5QMKJ4.js");
|
|
488
488
|
if (viaAlias && argv[0]) {
|
|
489
489
|
process.stderr.write(
|
|
490
490
|
`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.12.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",
|
|
@@ -49,13 +49,13 @@
|
|
|
49
49
|
"mediabunny": "^1.27.3",
|
|
50
50
|
"playwright": "^1.49.0",
|
|
51
51
|
"@vosjs/editor": "^1.3.0",
|
|
52
|
-
"@vosjs/core": "^0.23.1",
|
|
53
52
|
"@vosjs/elements": "^0.8.0",
|
|
54
|
-
"@vosjs/render-core": "^0.
|
|
55
|
-
"@vosjs/shared": "^0.
|
|
56
|
-
"@vosjs/studio-core": "^0.3.0",
|
|
53
|
+
"@vosjs/render-core": "^0.2.0",
|
|
54
|
+
"@vosjs/shared": "^0.4.0",
|
|
57
55
|
"@vosjs/timeline": "^0.4.0",
|
|
58
|
-
"@vosjs/
|
|
56
|
+
"@vosjs/studio-core": "^0.4.0",
|
|
57
|
+
"@vosjs/tween": "^0.8.1",
|
|
58
|
+
"@vosjs/core": "^0.23.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/node": "^22",
|
|
@@ -208,9 +208,13 @@
|
|
|
208
208
|
"full": { "type": "integer" },
|
|
209
209
|
"crop": { "type": "integer" },
|
|
210
210
|
"sheet": { "type": ["string", "null"] },
|
|
211
|
+
"tokensEstimate": {
|
|
212
|
+
"type": "integer",
|
|
213
|
+
"description": "sum of (w×h)/750 over full + crop images — a reading-budget hint, not a bill"
|
|
214
|
+
},
|
|
211
215
|
"tokensEstimateClaude": {
|
|
212
216
|
"type": "integer",
|
|
213
|
-
"description": "
|
|
217
|
+
"description": "deprecated: the same number under its old name; gone next minor"
|
|
214
218
|
}
|
|
215
219
|
}
|
|
216
220
|
}
|