@vibeframe/mcp-server 0.103.0 → 0.103.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 +2 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -462888,12 +462888,13 @@ async function prompt2(question) {
|
|
|
462888
462888
|
});
|
|
462889
462889
|
});
|
|
462890
462890
|
}
|
|
462891
|
-
var ttyStream;
|
|
462891
|
+
var ttyStream, ANSI_RE;
|
|
462892
462892
|
var init_tty = __esm({
|
|
462893
462893
|
"../cli/src/utils/tty.ts"() {
|
|
462894
462894
|
"use strict";
|
|
462895
462895
|
init_open_url();
|
|
462896
462896
|
ttyStream = null;
|
|
462897
|
+
ANSI_RE = new RegExp(`${String.fromCharCode(27)}\\[[0-?]*[ -/]*[@-~]`, "g");
|
|
462897
462898
|
}
|
|
462898
462899
|
});
|
|
462899
462900
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibeframe/mcp-server",
|
|
3
|
-
"version": "0.103.
|
|
3
|
+
"version": "0.103.1",
|
|
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.103.
|
|
61
|
-
"@vibeframe/core": "0.103.
|
|
60
|
+
"@vibeframe/cli": "0.103.1",
|
|
61
|
+
"@vibeframe/core": "0.103.1"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
64
|
"node": ">=20"
|