@mcpc-tech/unplugin-dev-inspector-mcp 0.0.2-beta.9 → 0.0.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/client/dist/inspector.iife.js +323 -323
- package/dist/index.cjs +3036 -16315
- package/dist/index.d.cts +73 -5
- package/dist/index.d.ts +73 -5
- package/dist/index.js +3038 -16318
- package/package.json +16 -11
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcpc-tech/unplugin-dev-inspector-mcp",
|
|
3
|
-
"version": "0.0.2
|
|
4
|
-
"description": "Universal dev inspector plugin for React - inspect component sources and API calls in any bundler",
|
|
3
|
+
"version": "0.0.2",
|
|
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",
|
|
7
7
|
"files": [
|
|
@@ -14,9 +14,14 @@
|
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
"import": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"default": "./dist/index.js"
|
|
20
|
+
},
|
|
21
|
+
"require": {
|
|
22
|
+
"types": "./dist/index.d.cts",
|
|
23
|
+
"default": "./dist/index.cjs"
|
|
24
|
+
}
|
|
20
25
|
},
|
|
21
26
|
"./client": {
|
|
22
27
|
"types": "./client.d.ts"
|
|
@@ -54,7 +59,9 @@
|
|
|
54
59
|
"dependencies": {
|
|
55
60
|
"@agentclientprotocol/sdk": "^0.5.1",
|
|
56
61
|
"@ai-sdk/react": "^2.0.95",
|
|
57
|
-
"@
|
|
62
|
+
"@babel/parser": "^7.28.5",
|
|
63
|
+
"@babel/traverse": "^7.28.5",
|
|
64
|
+
"@mcpc-tech/acp-ai-provider": "^0.1.25",
|
|
58
65
|
"@mcpc-tech/cmcp": "^0.0.13-beta.2",
|
|
59
66
|
"@mcpc-tech/core": "^0.3.8",
|
|
60
67
|
"@modelcontextprotocol/sdk": "^1.20.1",
|
|
@@ -81,6 +88,7 @@
|
|
|
81
88
|
"@radix-ui/react-slot": "^1.2.3",
|
|
82
89
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
83
90
|
"@radix-ui/react-use-controllable-state": "^1.2.2",
|
|
91
|
+
"@vue/compiler-sfc": "^3.5.24",
|
|
84
92
|
"@xyflow/react": "^12.9.3",
|
|
85
93
|
"ai": "^5.0.95",
|
|
86
94
|
"aria-hidden": "^1.2.6",
|
|
@@ -90,6 +98,7 @@
|
|
|
90
98
|
"cmdk": "^1.1.1",
|
|
91
99
|
"embla-carousel-react": "^8.6.0",
|
|
92
100
|
"lucide-react": "^0.546.0",
|
|
101
|
+
"magic-string": "^0.30.21",
|
|
93
102
|
"mcp-remote": "^0.1.31",
|
|
94
103
|
"motion": "^12.23.24",
|
|
95
104
|
"nanoid": "^5.1.6",
|
|
@@ -106,17 +115,13 @@
|
|
|
106
115
|
"zod": "^3.24.1"
|
|
107
116
|
},
|
|
108
117
|
"devDependencies": {
|
|
109
|
-
"@babel/parser": "^7.28.5",
|
|
110
|
-
"@babel/traverse": "^7.28.5",
|
|
111
118
|
"@babel/types": "^7.28.5",
|
|
112
119
|
"@tailwindcss/postcss": "^4.1.14",
|
|
113
120
|
"@types/babel__traverse": "^7.28.0",
|
|
114
121
|
"@types/node": "^24.7.2",
|
|
115
122
|
"@types/react": "^19.2.2",
|
|
116
123
|
"@types/react-dom": "^19.2.2",
|
|
117
|
-
"@vue/compiler-sfc": "^3.5.24",
|
|
118
124
|
"esbuild": "^0.25.11",
|
|
119
|
-
"magic-string": "^0.30.21",
|
|
120
125
|
"postcss": "^8.5.6",
|
|
121
126
|
"tailwindcss": "^4.1.14",
|
|
122
127
|
"tsdown": "^0.15.6",
|
|
@@ -125,4 +130,4 @@
|
|
|
125
130
|
"publishConfig": {
|
|
126
131
|
"access": "public"
|
|
127
132
|
}
|
|
128
|
-
}
|
|
133
|
+
}
|