@mcpc-tech/unplugin-dev-inspector-mcp 0.0.10 → 0.0.13
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 +19 -1
- package/client/dist/inspector.iife.js +1 -5
- package/dist/cli.cjs +180 -0
- package/dist/cli.d.cts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +177 -0
- package/dist/config-updater.cjs +88171 -0
- package/dist/config-updater.js +88183 -0
- package/dist/index.cjs +79 -88252
- package/dist/index.d.cts +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +71 -88279
- package/dist/loader.cjs +45 -0
- package/dist/loader.d.cts +15 -0
- package/dist/loader.d.ts +15 -0
- package/dist/loader.js +42 -0
- package/dist/standalone-server.cjs +2 -102
- package/dist/standalone-server.js +1 -100
- package/dist/vue-transform.cjs +140 -0
- package/dist/vue-transform.js +126 -0
- package/package.json +15 -1
package/dist/index.d.cts
CHANGED
|
@@ -118,6 +118,18 @@ interface DevInspectorOptions extends McpConfigOptions, AcpOptions {
|
|
|
118
118
|
* @example "virtual:my-inspector" or "virtual:custom-mcp"
|
|
119
119
|
*/
|
|
120
120
|
virtualModuleName?: string;
|
|
121
|
+
/**
|
|
122
|
+
* Automatically open browser with Chrome DevTools when dev server starts
|
|
123
|
+
* Uses Chrome DevTools Protocol for full debugging capabilities (console, network, etc.)
|
|
124
|
+
* @default true when enableMcp is true
|
|
125
|
+
*/
|
|
126
|
+
autoOpenBrowser?: boolean;
|
|
127
|
+
/**
|
|
128
|
+
* Custom browser launch URL
|
|
129
|
+
* If not specified, uses the dev server URL (e.g., http://localhost:5173)
|
|
130
|
+
* @example "http://localhost:5173/dashboard"
|
|
131
|
+
*/
|
|
132
|
+
browserUrl?: string;
|
|
121
133
|
}
|
|
122
134
|
declare const unplugin: unplugin0.UnpluginInstance<DevInspectorOptions | undefined, boolean>;
|
|
123
135
|
//#endregion
|
package/dist/index.d.ts
CHANGED
|
@@ -118,6 +118,18 @@ interface DevInspectorOptions extends McpConfigOptions, AcpOptions {
|
|
|
118
118
|
* @example "virtual:my-inspector" or "virtual:custom-mcp"
|
|
119
119
|
*/
|
|
120
120
|
virtualModuleName?: string;
|
|
121
|
+
/**
|
|
122
|
+
* Automatically open browser with Chrome DevTools when dev server starts
|
|
123
|
+
* Uses Chrome DevTools Protocol for full debugging capabilities (console, network, etc.)
|
|
124
|
+
* @default true when enableMcp is true
|
|
125
|
+
*/
|
|
126
|
+
autoOpenBrowser?: boolean;
|
|
127
|
+
/**
|
|
128
|
+
* Custom browser launch URL
|
|
129
|
+
* If not specified, uses the dev server URL (e.g., http://localhost:5173)
|
|
130
|
+
* @example "http://localhost:5173/dashboard"
|
|
131
|
+
*/
|
|
132
|
+
browserUrl?: string;
|
|
121
133
|
}
|
|
122
134
|
declare const unplugin: unplugin0.UnpluginInstance<DevInspectorOptions | undefined, boolean>;
|
|
123
135
|
//#endregion
|