@nuxt/devtools-kit 1.6.4 → 1.7.0

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
@@ -1,7 +1,7 @@
1
1
  import * as execa from 'execa';
2
2
  import * as _nuxt_schema from '@nuxt/schema';
3
3
  import { BirpcGroup } from 'birpc';
4
- import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.c8a8b7e8.cjs';
4
+ import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.s0VF6R5p.cjs';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'unimport';
package/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as execa from 'execa';
2
2
  import * as _nuxt_schema from '@nuxt/schema';
3
3
  import { BirpcGroup } from 'birpc';
4
- import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.c8a8b7e8.mjs';
4
+ import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.s0VF6R5p.mjs';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'unimport';
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as execa from 'execa';
2
2
  import * as _nuxt_schema from '@nuxt/schema';
3
3
  import { BirpcGroup } from 'birpc';
4
- import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.c8a8b7e8.js';
4
+ import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.s0VF6R5p.js';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'unimport';
@@ -330,7 +330,14 @@ interface ComponentWithRelationships {
330
330
  dependencies?: string[];
331
331
  dependents?: string[];
332
332
  }
333
+ interface CodeServerOptions {
334
+ codeBinary: string;
335
+ launchArg: string;
336
+ licenseTermsArg: string;
337
+ connectionTokenArg: string;
338
+ }
333
339
 
340
+ type CodeServerType = 'ms-code-cli' | 'ms-code-server' | 'coder-code-server';
334
341
  interface ModuleOptions {
335
342
  /**
336
343
  * Enable DevTools
@@ -465,6 +472,19 @@ interface VSCodeIntegrationOptions {
465
472
  * Options for VS Code tunnel
466
473
  */
467
474
  tunnel?: VSCodeTunnelOptions;
475
+ /**
476
+ * Determines which binary and arguments to use for VS Code.
477
+ *
478
+ * By default, uses the MS Code Server (ms-code-server).
479
+ * Can alternatively use the open source Coder code-server (coder-code-server),
480
+ * or the MS VS Code CLI (ms-code-cli)
481
+ * @default 'ms-code-server'
482
+ */
483
+ codeServer?: CodeServerType;
484
+ /**
485
+ * Host address to listen on. Unspecified by default.
486
+ */
487
+ host?: string;
468
488
  }
469
489
  interface VSCodeTunnelOptions {
470
490
  /**
@@ -738,4 +758,4 @@ declare module '@nuxt/schema' {
738
758
  }
739
759
  }
740
760
 
741
- export type { ModuleGlobalOptions as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, ModuleOptions as _, VueInspectorClient as a, VSCodeIntegrationOptions as a0, VSCodeTunnelOptions as a1, NuxtDevToolsOptions as a2, ClientUpdateEvent as a3, NuxtDevtoolsServerContext as a4, InstallModuleReturn as a5, TerminalBase as a6, TerminalAction as a7, TerminalInfo as a8, WizardFunctions as a9, WizardActions as aa, GetWizardArgs as ab, ServerFunctions as b, AnalyzeBuildsInfo as c, TabCategory as d, ModuleLaunchView as e, ModuleIframeView as f, ModuleVNodeView as g, ModuleLaunchAction as h, ModuleView as i, ModuleIframeTabLazyOptions as j, ModuleBuiltinTab as k, ModuleTabInfo as l, CategorizedTabs as m, PackageUpdateInfo as n, PackageManagerName as o, NpmCommandType as p, NpmCommandOptions as q, AutoImportsWithMetadata as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
761
+ export type { CodeServerType as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, CodeServerOptions as _, VueInspectorClient as a, ModuleOptions as a0, ModuleGlobalOptions as a1, VSCodeIntegrationOptions as a2, VSCodeTunnelOptions as a3, NuxtDevToolsOptions as a4, ClientUpdateEvent as a5, NuxtDevtoolsServerContext as a6, InstallModuleReturn as a7, TerminalBase as a8, TerminalAction as a9, TerminalInfo as aa, WizardFunctions as ab, WizardActions as ac, GetWizardArgs as ad, ServerFunctions as b, AnalyzeBuildsInfo as c, TabCategory as d, ModuleLaunchView as e, ModuleIframeView as f, ModuleVNodeView as g, ModuleLaunchAction as h, ModuleView as i, ModuleIframeTabLazyOptions as j, ModuleBuiltinTab as k, ModuleTabInfo as l, CategorizedTabs as m, PackageUpdateInfo as n, PackageManagerName as o, NpmCommandType as p, NpmCommandOptions as q, AutoImportsWithMetadata as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
@@ -330,7 +330,14 @@ interface ComponentWithRelationships {
330
330
  dependencies?: string[];
331
331
  dependents?: string[];
332
332
  }
333
+ interface CodeServerOptions {
334
+ codeBinary: string;
335
+ launchArg: string;
336
+ licenseTermsArg: string;
337
+ connectionTokenArg: string;
338
+ }
333
339
 
340
+ type CodeServerType = 'ms-code-cli' | 'ms-code-server' | 'coder-code-server';
334
341
  interface ModuleOptions {
335
342
  /**
336
343
  * Enable DevTools
@@ -465,6 +472,19 @@ interface VSCodeIntegrationOptions {
465
472
  * Options for VS Code tunnel
466
473
  */
467
474
  tunnel?: VSCodeTunnelOptions;
475
+ /**
476
+ * Determines which binary and arguments to use for VS Code.
477
+ *
478
+ * By default, uses the MS Code Server (ms-code-server).
479
+ * Can alternatively use the open source Coder code-server (coder-code-server),
480
+ * or the MS VS Code CLI (ms-code-cli)
481
+ * @default 'ms-code-server'
482
+ */
483
+ codeServer?: CodeServerType;
484
+ /**
485
+ * Host address to listen on. Unspecified by default.
486
+ */
487
+ host?: string;
468
488
  }
469
489
  interface VSCodeTunnelOptions {
470
490
  /**
@@ -738,4 +758,4 @@ declare module '@nuxt/schema' {
738
758
  }
739
759
  }
740
760
 
741
- export type { ModuleGlobalOptions as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, ModuleOptions as _, VueInspectorClient as a, VSCodeIntegrationOptions as a0, VSCodeTunnelOptions as a1, NuxtDevToolsOptions as a2, ClientUpdateEvent as a3, NuxtDevtoolsServerContext as a4, InstallModuleReturn as a5, TerminalBase as a6, TerminalAction as a7, TerminalInfo as a8, WizardFunctions as a9, WizardActions as aa, GetWizardArgs as ab, ServerFunctions as b, AnalyzeBuildsInfo as c, TabCategory as d, ModuleLaunchView as e, ModuleIframeView as f, ModuleVNodeView as g, ModuleLaunchAction as h, ModuleView as i, ModuleIframeTabLazyOptions as j, ModuleBuiltinTab as k, ModuleTabInfo as l, CategorizedTabs as m, PackageUpdateInfo as n, PackageManagerName as o, NpmCommandType as p, NpmCommandOptions as q, AutoImportsWithMetadata as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
761
+ export type { CodeServerType as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, CodeServerOptions as _, VueInspectorClient as a, ModuleOptions as a0, ModuleGlobalOptions as a1, VSCodeIntegrationOptions as a2, VSCodeTunnelOptions as a3, NuxtDevToolsOptions as a4, ClientUpdateEvent as a5, NuxtDevtoolsServerContext as a6, InstallModuleReturn as a7, TerminalBase as a8, TerminalAction as a9, TerminalInfo as aa, WizardFunctions as ab, WizardActions as ac, GetWizardArgs as ad, ServerFunctions as b, AnalyzeBuildsInfo as c, TabCategory as d, ModuleLaunchView as e, ModuleIframeView as f, ModuleVNodeView as g, ModuleLaunchAction as h, ModuleView as i, ModuleIframeTabLazyOptions as j, ModuleBuiltinTab as k, ModuleTabInfo as l, CategorizedTabs as m, PackageUpdateInfo as n, PackageManagerName as o, NpmCommandType as p, NpmCommandOptions as q, AutoImportsWithMetadata as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
@@ -330,7 +330,14 @@ interface ComponentWithRelationships {
330
330
  dependencies?: string[];
331
331
  dependents?: string[];
332
332
  }
333
+ interface CodeServerOptions {
334
+ codeBinary: string;
335
+ launchArg: string;
336
+ licenseTermsArg: string;
337
+ connectionTokenArg: string;
338
+ }
333
339
 
340
+ type CodeServerType = 'ms-code-cli' | 'ms-code-server' | 'coder-code-server';
334
341
  interface ModuleOptions {
335
342
  /**
336
343
  * Enable DevTools
@@ -465,6 +472,19 @@ interface VSCodeIntegrationOptions {
465
472
  * Options for VS Code tunnel
466
473
  */
467
474
  tunnel?: VSCodeTunnelOptions;
475
+ /**
476
+ * Determines which binary and arguments to use for VS Code.
477
+ *
478
+ * By default, uses the MS Code Server (ms-code-server).
479
+ * Can alternatively use the open source Coder code-server (coder-code-server),
480
+ * or the MS VS Code CLI (ms-code-cli)
481
+ * @default 'ms-code-server'
482
+ */
483
+ codeServer?: CodeServerType;
484
+ /**
485
+ * Host address to listen on. Unspecified by default.
486
+ */
487
+ host?: string;
468
488
  }
469
489
  interface VSCodeTunnelOptions {
470
490
  /**
@@ -738,4 +758,4 @@ declare module '@nuxt/schema' {
738
758
  }
739
759
  }
740
760
 
741
- export type { ModuleGlobalOptions as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, ModuleOptions as _, VueInspectorClient as a, VSCodeIntegrationOptions as a0, VSCodeTunnelOptions as a1, NuxtDevToolsOptions as a2, ClientUpdateEvent as a3, NuxtDevtoolsServerContext as a4, InstallModuleReturn as a5, TerminalBase as a6, TerminalAction as a7, TerminalInfo as a8, WizardFunctions as a9, WizardActions as aa, GetWizardArgs as ab, ServerFunctions as b, AnalyzeBuildsInfo as c, TabCategory as d, ModuleLaunchView as e, ModuleIframeView as f, ModuleVNodeView as g, ModuleLaunchAction as h, ModuleView as i, ModuleIframeTabLazyOptions as j, ModuleBuiltinTab as k, ModuleTabInfo as l, CategorizedTabs as m, PackageUpdateInfo as n, PackageManagerName as o, NpmCommandType as p, NpmCommandOptions as q, AutoImportsWithMetadata as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
761
+ export type { CodeServerType as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, CodeServerOptions as _, VueInspectorClient as a, ModuleOptions as a0, ModuleGlobalOptions as a1, VSCodeIntegrationOptions as a2, VSCodeTunnelOptions as a3, NuxtDevToolsOptions as a4, ClientUpdateEvent as a5, NuxtDevtoolsServerContext as a6, InstallModuleReturn as a7, TerminalBase as a8, TerminalAction as a9, TerminalInfo as aa, WizardFunctions as ab, WizardActions as ac, GetWizardArgs as ad, ServerFunctions as b, AnalyzeBuildsInfo as c, TabCategory as d, ModuleLaunchView as e, ModuleIframeView as f, ModuleVNodeView as g, ModuleLaunchAction as h, ModuleView as i, ModuleIframeTabLazyOptions as j, ModuleBuiltinTab as k, ModuleTabInfo as l, CategorizedTabs as m, PackageUpdateInfo as n, PackageManagerName as o, NpmCommandType as p, NpmCommandOptions as q, AutoImportsWithMetadata as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
package/dist/types.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.c8a8b7e8.cjs';
2
- export { A as AnalyzeBuildMeta, c as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, r as AutoImportsWithMetadata, B as BasicModuleInfo, m as CategorizedTabs, a3 as ClientUpdateEvent, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ab as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a5 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, k as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, $ as ModuleGlobalOptions, j as ModuleIframeTabLazyOptions, f as ModuleIframeView, h as ModuleLaunchAction, e as ModuleLaunchView, _ as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, l as ModuleTabInfo, J as ModuleType, g as ModuleVNodeView, i as ModuleView, q as NpmCommandOptions, p as NpmCommandType, a2 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a4 as NuxtDevtoolsServerContext, o as PackageManagerName, n as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, d as TabCategory, a7 as TerminalAction, a6 as TerminalBase, a8 as TerminalInfo, T as TerminalState, a0 as VSCodeIntegrationOptions, a1 as VSCodeTunnelOptions, aa as WizardActions, a9 as WizardFunctions } from './shared/devtools-kit.c8a8b7e8.cjs';
1
+ import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.s0VF6R5p.cjs';
2
+ export { A as AnalyzeBuildMeta, c as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, r as AutoImportsWithMetadata, B as BasicModuleInfo, m as CategorizedTabs, a5 as ClientUpdateEvent, _ as CodeServerOptions, $ as CodeServerType, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ad as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a7 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, k as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, a1 as ModuleGlobalOptions, j as ModuleIframeTabLazyOptions, f as ModuleIframeView, h as ModuleLaunchAction, e as ModuleLaunchView, a0 as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, l as ModuleTabInfo, J as ModuleType, g as ModuleVNodeView, i as ModuleView, q as NpmCommandOptions, p as NpmCommandType, a4 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a6 as NuxtDevtoolsServerContext, o as PackageManagerName, n as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, d as TabCategory, a9 as TerminalAction, a8 as TerminalBase, aa as TerminalInfo, T as TerminalState, a2 as VSCodeIntegrationOptions, a3 as VSCodeTunnelOptions, ac as WizardActions, ab as WizardFunctions } from './shared/devtools-kit.s0VF6R5p.cjs';
3
3
  import { BirpcReturn } from 'birpc';
4
4
  import { Hookable } from 'hookable';
5
5
  import { NuxtApp } from 'nuxt/app';
package/dist/types.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.c8a8b7e8.mjs';
2
- export { A as AnalyzeBuildMeta, c as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, r as AutoImportsWithMetadata, B as BasicModuleInfo, m as CategorizedTabs, a3 as ClientUpdateEvent, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ab as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a5 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, k as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, $ as ModuleGlobalOptions, j as ModuleIframeTabLazyOptions, f as ModuleIframeView, h as ModuleLaunchAction, e as ModuleLaunchView, _ as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, l as ModuleTabInfo, J as ModuleType, g as ModuleVNodeView, i as ModuleView, q as NpmCommandOptions, p as NpmCommandType, a2 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a4 as NuxtDevtoolsServerContext, o as PackageManagerName, n as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, d as TabCategory, a7 as TerminalAction, a6 as TerminalBase, a8 as TerminalInfo, T as TerminalState, a0 as VSCodeIntegrationOptions, a1 as VSCodeTunnelOptions, aa as WizardActions, a9 as WizardFunctions } from './shared/devtools-kit.c8a8b7e8.mjs';
1
+ import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.s0VF6R5p.mjs';
2
+ export { A as AnalyzeBuildMeta, c as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, r as AutoImportsWithMetadata, B as BasicModuleInfo, m as CategorizedTabs, a5 as ClientUpdateEvent, _ as CodeServerOptions, $ as CodeServerType, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ad as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a7 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, k as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, a1 as ModuleGlobalOptions, j as ModuleIframeTabLazyOptions, f as ModuleIframeView, h as ModuleLaunchAction, e as ModuleLaunchView, a0 as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, l as ModuleTabInfo, J as ModuleType, g as ModuleVNodeView, i as ModuleView, q as NpmCommandOptions, p as NpmCommandType, a4 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a6 as NuxtDevtoolsServerContext, o as PackageManagerName, n as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, d as TabCategory, a9 as TerminalAction, a8 as TerminalBase, aa as TerminalInfo, T as TerminalState, a2 as VSCodeIntegrationOptions, a3 as VSCodeTunnelOptions, ac as WizardActions, ab as WizardFunctions } from './shared/devtools-kit.s0VF6R5p.mjs';
3
3
  import { BirpcReturn } from 'birpc';
4
4
  import { Hookable } from 'hookable';
5
5
  import { NuxtApp } from 'nuxt/app';
package/dist/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.c8a8b7e8.js';
2
- export { A as AnalyzeBuildMeta, c as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, r as AutoImportsWithMetadata, B as BasicModuleInfo, m as CategorizedTabs, a3 as ClientUpdateEvent, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ab as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a5 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, k as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, $ as ModuleGlobalOptions, j as ModuleIframeTabLazyOptions, f as ModuleIframeView, h as ModuleLaunchAction, e as ModuleLaunchView, _ as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, l as ModuleTabInfo, J as ModuleType, g as ModuleVNodeView, i as ModuleView, q as NpmCommandOptions, p as NpmCommandType, a2 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a4 as NuxtDevtoolsServerContext, o as PackageManagerName, n as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, d as TabCategory, a7 as TerminalAction, a6 as TerminalBase, a8 as TerminalInfo, T as TerminalState, a0 as VSCodeIntegrationOptions, a1 as VSCodeTunnelOptions, aa as WizardActions, a9 as WizardFunctions } from './shared/devtools-kit.c8a8b7e8.js';
1
+ import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.s0VF6R5p.js';
2
+ export { A as AnalyzeBuildMeta, c as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, r as AutoImportsWithMetadata, B as BasicModuleInfo, m as CategorizedTabs, a5 as ClientUpdateEvent, _ as CodeServerOptions, $ as CodeServerType, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ad as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a7 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, k as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, a1 as ModuleGlobalOptions, j as ModuleIframeTabLazyOptions, f as ModuleIframeView, h as ModuleLaunchAction, e as ModuleLaunchView, a0 as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, l as ModuleTabInfo, J as ModuleType, g as ModuleVNodeView, i as ModuleView, q as NpmCommandOptions, p as NpmCommandType, a4 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a6 as NuxtDevtoolsServerContext, o as PackageManagerName, n as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, d as TabCategory, a9 as TerminalAction, a8 as TerminalBase, aa as TerminalInfo, T as TerminalState, a2 as VSCodeIntegrationOptions, a3 as VSCodeTunnelOptions, ac as WizardActions, ab as WizardFunctions } from './shared/devtools-kit.s0VF6R5p.js';
3
3
  import { BirpcReturn } from 'birpc';
4
4
  import { Hookable } from 'hookable';
5
5
  import { NuxtApp } from 'nuxt/app';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxt/devtools-kit",
3
3
  "type": "module",
4
- "version": "1.6.4",
4
+ "version": "1.7.0",
5
5
  "license": "MIT",
6
6
  "homepage": "https://devtools.nuxt.com/module/utils-kit",
7
7
  "repository": {
@@ -41,17 +41,17 @@
41
41
  "vite": "*"
42
42
  },
43
43
  "dependencies": {
44
- "@nuxt/kit": "^3.14.1592",
45
- "@nuxt/schema": "^3.14.1592",
44
+ "@nuxt/kit": "^3.15.0",
45
+ "@nuxt/schema": "^3.15.0",
46
46
  "execa": "^7.2.0"
47
47
  },
48
48
  "devDependencies": {
49
49
  "birpc": "^0.2.19",
50
50
  "error-stack-parser-es": "^0.1.5",
51
51
  "hookable": "^5.5.3",
52
- "unbuild": "^2.0.0",
52
+ "unbuild": "^3.0.1",
53
53
  "unimport": "^3.14.5",
54
- "vite-plugin-vue-inspector": "5.1.3",
54
+ "vite-plugin-vue-inspector": "^5.3.1",
55
55
  "vue-router": "^4.5.0"
56
56
  },
57
57
  "scripts": {