@vibeframe/mcp-server 0.55.2 → 0.56.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.
Files changed (2) hide show
  1. package/dist/index.js +8 -7
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -432888,7 +432888,7 @@ var DEFAULT_MODEL, OpenAIImageProvider, openaiImageProvider;
432888
432888
  var init_OpenAIImageProvider = __esm({
432889
432889
  "../ai-providers/dist/openai-image/OpenAIImageProvider.js"() {
432890
432890
  "use strict";
432891
- DEFAULT_MODEL = "gpt-image-1.5";
432891
+ DEFAULT_MODEL = "gpt-image-2";
432892
432892
  OpenAIImageProvider = class {
432893
432893
  constructor() {
432894
432894
  this.id = "openai-image";
@@ -446459,9 +446459,7 @@ function buildPreset(input3) {
446459
446459
  const captionInner = useWordSync ? renderTranscriptSpans(transcript) : esc(captionText);
446460
446460
  const wordCss = useWordSync ? `
446461
446461
  ${scope} .caption .word { display: inline-block; opacity: 0; }` : "";
446462
- const timeline = useWordSync ? `${buildTranscriptTweens(transcript, `${scope} .caption .word`)}
446463
- tl.to('${scope} .caption', { opacity: 0, duration: 0.4, ease: 'power2.in' }, ${(dur - 0.4).toFixed(2)});` : `tl.from('${scope} .caption', { opacity: 0, y: 28, duration: 0.6, ease: 'power2.out' }, 0.1);
446464
- tl.to('${scope} .caption', { opacity: 0, duration: 0.4, ease: 'power2.in' }, ${(dur - 0.4).toFixed(2)});`;
446462
+ const timeline = useWordSync ? buildTranscriptTweens(transcript, `${scope} .caption .word`) : `tl.from('${scope} .caption', { opacity: 0, y: 28, duration: 0.45, ease: 'power3.out' }, 0.05);`;
446465
446463
  return {
446466
446464
  css: `${scope} {
446467
446465
  position: absolute; inset: 0; width: 100%; height: 100%;
@@ -446509,8 +446507,11 @@ function buildPreset(input3) {
446509
446507
  }`,
446510
446508
  body: `${backdropMarkup}
446511
446509
  <div class="announce"><h1 id="headline">${esc(headline)}</h1></div>`,
446512
- timeline: `tl.from('${scope} #headline', { opacity: 0, scale: 0.8, duration: 0.9, ease: 'back.out(1.6)' }, 0.15);
446513
- tl.to('${scope} #headline', { opacity: 0, duration: 0.4, ease: 'power2.in' }, ${(dur - 0.4).toFixed(2)});`
446510
+ // Faster, snappier entrance and no tail fade-out see the
446511
+ // matching note in the `simple` case above. The headline stays
446512
+ // on screen until the producer cuts to the next clip; the next
446513
+ // scene's own fade-in handles the visual transition.
446514
+ timeline: `tl.from('${scope} #headline', { opacity: 0, scale: 0.92, duration: 0.55, ease: 'power3.out' }, 0.05);`
446514
446515
  };
446515
446516
  }
446516
446517
  case "explainer": {
@@ -450360,8 +450361,8 @@ var init_provider_resolver = __esm({
450360
450361
  "use strict";
450361
450362
  init_api_key();
450362
450363
  IMAGE_PROVIDERS = [
450363
- { name: "gemini", envVar: "GOOGLE_API_KEY", label: "Gemini" },
450364
450364
  { name: "openai", envVar: "OPENAI_API_KEY", label: "OpenAI" },
450365
+ { name: "gemini", envVar: "GOOGLE_API_KEY", label: "Gemini" },
450365
450366
  { name: "grok", envVar: "XAI_API_KEY", label: "Grok" }
450366
450367
  ];
450367
450368
  VIDEO_PROVIDERS = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibeframe/mcp-server",
3
- "version": "0.55.2",
3
+ "version": "0.56.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/core": "0.55.2",
61
- "@vibeframe/cli": "0.55.2"
60
+ "@vibeframe/cli": "0.56.0",
61
+ "@vibeframe/core": "0.56.0"
62
62
  },
63
63
  "engines": {
64
64
  "node": ">=20"