nuxt-skill-hub 0.0.6 → 0.0.8
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/module.d.mts +7 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +799 -172
- package/dist/runtime/eslint/no-redundant-import.d.ts +2 -0
- package/dist/runtime/eslint/no-redundant-import.js +114 -0
- package/dist/runtime/eslint/plugin.d.ts +9 -0
- package/dist/runtime/eslint/plugin.js +5 -0
- package/package.json +7 -2
package/dist/module.d.mts
CHANGED
|
@@ -2,8 +2,8 @@ import * as _nuxt_schema from '@nuxt/schema';
|
|
|
2
2
|
|
|
3
3
|
type SkillHubTarget = string;
|
|
4
4
|
|
|
5
|
-
type SkillSourceKind = 'dist' | 'github' | 'generated';
|
|
6
|
-
type SkillResolverKind = 'agentsField' | 'githubHeuristic' | 'metadataRouter';
|
|
5
|
+
type SkillSourceKind = 'dist' | 'github' | 'wellKnown' | 'generated';
|
|
6
|
+
type SkillResolverKind = 'agentsField' | 'githubHeuristic' | 'wellKnownV2' | 'metadataRouter';
|
|
7
7
|
|
|
8
8
|
type SkillHubGenerationMode = 'prepare' | 'manual';
|
|
9
9
|
interface ModuleOptions {
|
|
@@ -11,6 +11,11 @@ interface ModuleOptions {
|
|
|
11
11
|
targets?: SkillHubTarget[];
|
|
12
12
|
moduleAuthoring?: boolean;
|
|
13
13
|
generationMode?: SkillHubGenerationMode;
|
|
14
|
+
/**
|
|
15
|
+
* Auto-register ESLint rule to remove redundant imports when @nuxt/eslint is installed.
|
|
16
|
+
* @default true
|
|
17
|
+
*/
|
|
18
|
+
eslint?: boolean;
|
|
14
19
|
}
|
|
15
20
|
interface SkillHubContribution {
|
|
16
21
|
packageName: string;
|