@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/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