@vibeframe/mcp-server 0.30.0 → 0.31.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/index.js +7 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1560,7 +1560,13 @@ var exportCommand = new Command("export").description("Export project to video f
|
|
|
1560
1560
|
"-p, --preset <preset>",
|
|
1561
1561
|
"Quality preset (draft, standard, high, ultra)",
|
|
1562
1562
|
"standard"
|
|
1563
|
-
).option("-y, --overwrite", "Overwrite output file if exists", false).option("-g, --gap-fill <strategy>", "Gap filling strategy (black, extend)", "extend").
|
|
1563
|
+
).option("-y, --overwrite", "Overwrite output file if exists", false).option("-g, --gap-fill <strategy>", "Gap filling strategy (black, extend)", "extend").addHelpText("after", `
|
|
1564
|
+
Examples:
|
|
1565
|
+
$ vibe export project.vibe.json -o output.mp4
|
|
1566
|
+
$ vibe export project.vibe.json -o output.mp4 -p high -y
|
|
1567
|
+
$ vibe export project.vibe.json -o output.webm -f webm
|
|
1568
|
+
|
|
1569
|
+
No API keys needed. Requires FFmpeg.`).action(async (projectPath, options) => {
|
|
1564
1570
|
const spinner = ora("Checking FFmpeg...").start();
|
|
1565
1571
|
try {
|
|
1566
1572
|
const ffmpegPath = await findFFmpeg();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibeframe/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.0",
|
|
4
4
|
"description": "VibeFrame MCP Server - AI-native video editing via Model Context Protocol",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"tsx": "^4.21.0",
|
|
58
58
|
"typescript": "^5.3.3",
|
|
59
59
|
"vitest": "^1.2.2",
|
|
60
|
-
"@vibeframe/cli": "0.
|
|
61
|
-
"@vibeframe/core": "0.
|
|
60
|
+
"@vibeframe/cli": "0.31.0",
|
|
61
|
+
"@vibeframe/core": "0.31.0"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
64
|
"node": ">=20"
|