@mcp-use/cli 2.0.3 → 2.1.2
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.mjs +0 -0
- package/package.json +10 -10
package/dist/index.mjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-use/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Build tool for MCP UI widgets - bundles React components into standalone HTML pages for Model Context Protocol servers",
|
|
5
5
|
"author": "mcp-use, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,14 +31,19 @@
|
|
|
31
31
|
"files": [
|
|
32
32
|
"dist"
|
|
33
33
|
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "tsup src/index.ts --format cjs,esm && tsc --emitDeclarationOnly --declaration",
|
|
36
|
+
"dev": "tsc --watch",
|
|
37
|
+
"test": "vitest"
|
|
38
|
+
},
|
|
34
39
|
"dependencies": {
|
|
40
|
+
"mcp-use": "workspace:*",
|
|
41
|
+
"@mcp-use/inspector": "workspace:*",
|
|
35
42
|
"commander": "^11.0.0",
|
|
36
43
|
"esbuild": "^0.19.0",
|
|
37
44
|
"globby": "^14.0.0",
|
|
38
45
|
"open": "^10.0.0",
|
|
39
|
-
"tsx": "^4.0.0"
|
|
40
|
-
"mcp-use": "1.0.0",
|
|
41
|
-
"@mcp-use/inspector": "0.2.2"
|
|
46
|
+
"tsx": "^4.0.0"
|
|
42
47
|
},
|
|
43
48
|
"devDependencies": {
|
|
44
49
|
"@types/node": "^20.0.0",
|
|
@@ -47,10 +52,5 @@
|
|
|
47
52
|
},
|
|
48
53
|
"publishConfig": {
|
|
49
54
|
"access": "public"
|
|
50
|
-
},
|
|
51
|
-
"scripts": {
|
|
52
|
-
"build": "tsup src/index.ts --format cjs,esm && tsc --emitDeclarationOnly --declaration",
|
|
53
|
-
"dev": "tsc --watch",
|
|
54
|
-
"test": "vitest"
|
|
55
55
|
}
|
|
56
|
-
}
|
|
56
|
+
}
|