storyforge 0.11.0 → 0.11.1
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/index.js +48 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2435,8 +2435,55 @@ function resolveBridgeToken2(explicit) {
|
|
|
2435
2435
|
return process.env.FORGE_BRIDGE_TOKEN ?? process.env.BRIDGE_TOKEN ?? null;
|
|
2436
2436
|
}
|
|
2437
2437
|
|
|
2438
|
+
// package.json
|
|
2439
|
+
var package_default = {
|
|
2440
|
+
name: "storyforge",
|
|
2441
|
+
version: "0.11.0",
|
|
2442
|
+
description: "StoryForge \u2014 local bridge for the Forge video production web app. Parallel clip-render orchestrator (Remotion 4 + Manim + HyperFrames + ffmpeg) + final video stitcher + dependency doctor.",
|
|
2443
|
+
type: "module",
|
|
2444
|
+
bin: {
|
|
2445
|
+
storyforge: "./dist/index.js"
|
|
2446
|
+
},
|
|
2447
|
+
files: [
|
|
2448
|
+
"dist/",
|
|
2449
|
+
"README.md"
|
|
2450
|
+
],
|
|
2451
|
+
scripts: {
|
|
2452
|
+
build: "tsup",
|
|
2453
|
+
lint: "tsc --noEmit",
|
|
2454
|
+
prepublishOnly: "npm run build"
|
|
2455
|
+
},
|
|
2456
|
+
dependencies: {
|
|
2457
|
+
"@ccusage/codex": "18.0.11",
|
|
2458
|
+
ccusage: "18.0.11"
|
|
2459
|
+
},
|
|
2460
|
+
devDependencies: {
|
|
2461
|
+
tsup: "8.5.0",
|
|
2462
|
+
typescript: "5.8.3"
|
|
2463
|
+
},
|
|
2464
|
+
publishConfig: {
|
|
2465
|
+
access: "public"
|
|
2466
|
+
},
|
|
2467
|
+
keywords: [
|
|
2468
|
+
"video",
|
|
2469
|
+
"remotion",
|
|
2470
|
+
"storyforge",
|
|
2471
|
+
"cli",
|
|
2472
|
+
"forge"
|
|
2473
|
+
],
|
|
2474
|
+
license: "MIT",
|
|
2475
|
+
engines: {
|
|
2476
|
+
node: ">=18.0.0"
|
|
2477
|
+
},
|
|
2478
|
+
repository: {
|
|
2479
|
+
type: "git",
|
|
2480
|
+
url: "git+https://github.com/backspacevenkat/forge.git",
|
|
2481
|
+
directory: "packages/cli"
|
|
2482
|
+
}
|
|
2483
|
+
};
|
|
2484
|
+
|
|
2438
2485
|
// src/index.ts
|
|
2439
|
-
var VERSION =
|
|
2486
|
+
var VERSION = package_default.version;
|
|
2440
2487
|
var HELP = `
|
|
2441
2488
|
storyforge \u2014 local bridge for the Forge video production web app
|
|
2442
2489
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "storyforge",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "StoryForge — local bridge for the Forge video production web app. Parallel clip-render orchestrator (Remotion 4 + Manim + HyperFrames + ffmpeg) + final video stitcher + dependency doctor.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|