@mcpc-tech/unplugin-dev-inspector-mcp 0.0.31 → 0.0.34
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/README.md +38 -1
- package/client/dist/inspector.iife.js +241 -238
- package/client.d.ts +55 -9
- package/dist/config-updater.cjs +242 -40
- package/dist/config-updater.js +270 -68
- package/dist/index.cjs +19 -0
- package/dist/index.js +19 -0
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcpc-tech/unplugin-dev-inspector-mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.34",
|
|
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",
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"@babel/parser": "^7.28.5",
|
|
114
114
|
"@babel/traverse": "^7.28.5",
|
|
115
115
|
"@code-inspector/core": "^1.3.0",
|
|
116
|
-
"@mcpc-tech/acp-ai-provider": "^0.1.
|
|
116
|
+
"@mcpc-tech/acp-ai-provider": "^0.1.41",
|
|
117
117
|
"@mcpc-tech/cmcp": "^0.0.15",
|
|
118
118
|
"@mcpc-tech/core": "^0.3.8",
|
|
119
119
|
"@modelcontextprotocol/sdk": "^1.20.1",
|
|
@@ -141,6 +141,7 @@
|
|
|
141
141
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
142
142
|
"@radix-ui/react-use-controllable-state": "^1.2.2",
|
|
143
143
|
"@radix-ui/react-visually-hidden": "^1.2.4",
|
|
144
|
+
"@vue/compiler-sfc": "^3.5.25",
|
|
144
145
|
"@xyflow/react": "^12.9.3",
|
|
145
146
|
"ai": "^5.0.95",
|
|
146
147
|
"aria-hidden": "^1.2.6",
|
|
@@ -160,13 +161,12 @@
|
|
|
160
161
|
"shiki": "^3.15.0",
|
|
161
162
|
"sonner": "^2.0.7",
|
|
162
163
|
"streamdown": "^1.5.1",
|
|
164
|
+
"svelte": "^5.45.8",
|
|
163
165
|
"tailwind-merge": "^3.3.1",
|
|
164
166
|
"tokenlens": "^1.3.1",
|
|
165
167
|
"unplugin": "^2.3.10",
|
|
166
168
|
"use-stick-to-bottom": "^1.1.1",
|
|
167
|
-
"
|
|
168
|
-
"zod": "^3.24.1",
|
|
169
|
-
"svelte": "^5.45.8"
|
|
169
|
+
"zod": "^3.24.1"
|
|
170
170
|
},
|
|
171
171
|
"devDependencies": {
|
|
172
172
|
"@babel/types": "^7.28.5",
|
|
@@ -186,4 +186,4 @@
|
|
|
186
186
|
"publishConfig": {
|
|
187
187
|
"access": "public"
|
|
188
188
|
}
|
|
189
|
-
}
|
|
189
|
+
}
|