@mcpc-tech/unplugin-dev-inspector-mcp 0.0.2-beta.21 → 0.0.2-beta.22
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.cjs +1391 -1207
- package/dist/index.d.cts +33 -2
- package/dist/index.d.ts +33 -2
- package/dist/index.js +1391 -1207
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcpc-tech/unplugin-dev-inspector-mcp",
|
|
3
|
-
"version": "0.0.2-beta.
|
|
3
|
+
"version": "0.0.2-beta.22",
|
|
4
4
|
"description": "Universal dev inspector plugin for React/Vue - inspect component sources and API calls in any bundler",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -59,7 +59,9 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@agentclientprotocol/sdk": "^0.5.1",
|
|
61
61
|
"@ai-sdk/react": "^2.0.95",
|
|
62
|
-
"@
|
|
62
|
+
"@babel/parser": "^7.28.5",
|
|
63
|
+
"@babel/traverse": "^7.28.5",
|
|
64
|
+
"@mcpc-tech/acp-ai-provider": "^0.1.25",
|
|
63
65
|
"@mcpc-tech/cmcp": "^0.0.13-beta.2",
|
|
64
66
|
"@mcpc-tech/core": "^0.3.8",
|
|
65
67
|
"@modelcontextprotocol/sdk": "^1.20.1",
|
|
@@ -86,6 +88,7 @@
|
|
|
86
88
|
"@radix-ui/react-slot": "^1.2.3",
|
|
87
89
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
88
90
|
"@radix-ui/react-use-controllable-state": "^1.2.2",
|
|
91
|
+
"@vue/compiler-sfc": "^3.5.24",
|
|
89
92
|
"@xyflow/react": "^12.9.3",
|
|
90
93
|
"ai": "^5.0.95",
|
|
91
94
|
"aria-hidden": "^1.2.6",
|
|
@@ -95,6 +98,7 @@
|
|
|
95
98
|
"cmdk": "^1.1.1",
|
|
96
99
|
"embla-carousel-react": "^8.6.0",
|
|
97
100
|
"lucide-react": "^0.546.0",
|
|
101
|
+
"magic-string": "^0.30.21",
|
|
98
102
|
"mcp-remote": "^0.1.31",
|
|
99
103
|
"motion": "^12.23.24",
|
|
100
104
|
"nanoid": "^5.1.6",
|
|
@@ -108,11 +112,7 @@
|
|
|
108
112
|
"tokenlens": "^1.3.1",
|
|
109
113
|
"unplugin": "^2.3.10",
|
|
110
114
|
"use-stick-to-bottom": "^1.1.1",
|
|
111
|
-
"zod": "^3.24.1"
|
|
112
|
-
"@babel/parser": "^7.28.5",
|
|
113
|
-
"@babel/traverse": "^7.28.5",
|
|
114
|
-
"@vue/compiler-sfc": "^3.5.24",
|
|
115
|
-
"magic-string": "^0.30.21"
|
|
115
|
+
"zod": "^3.24.1"
|
|
116
116
|
},
|
|
117
117
|
"devDependencies": {
|
|
118
118
|
"@babel/types": "^7.28.5",
|