@dryui/mcp 0.1.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/ai-surface.d.ts +10 -0
- package/dist/architecture.d.ts +103 -0
- package/dist/architecture.js +6262 -0
- package/dist/architecture.json +24419 -0
- package/dist/check-contract.d.ts +1 -0
- package/dist/composition-data.d.ts +27 -0
- package/dist/composition-data.js +5502 -0
- package/dist/contract.d.ts +41 -0
- package/dist/contract.v1.json +22804 -0
- package/dist/contract.v1.schema.json +523 -0
- package/dist/generate-architecture.d.ts +1 -0
- package/dist/generate-contract.d.ts +1 -0
- package/dist/generate-llms-txt.d.ts +6 -0
- package/dist/generate-spec.d.ts +26 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +31474 -0
- package/dist/project-planner.d.ts +73 -0
- package/dist/project-planner.js +374 -0
- package/dist/reviewer.d.ts +28 -0
- package/dist/reviewer.js +744 -0
- package/dist/spec-formatters.d.ts +19 -0
- package/dist/spec-formatters.js +256 -0
- package/dist/spec-types.d.ts +83 -0
- package/dist/spec-types.js +0 -0
- package/dist/spec.json +22976 -0
- package/dist/theme-checker.d.ts +22 -0
- package/dist/theme-checker.js +823 -0
- package/dist/utils.d.ts +2 -0
- package/dist/utils.js +72 -0
- package/dist/workspace-audit.d.ts +54 -0
- package/dist/workspace-audit.js +2099 -0
- package/package.json +94 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface Alternative {
|
|
2
|
+
rank: number;
|
|
3
|
+
component: string;
|
|
4
|
+
useWhen: string;
|
|
5
|
+
snippet: string;
|
|
6
|
+
}
|
|
7
|
+
export interface AntiPattern {
|
|
8
|
+
pattern: string;
|
|
9
|
+
reason: string;
|
|
10
|
+
fix: string;
|
|
11
|
+
}
|
|
12
|
+
export interface ComponentComposition {
|
|
13
|
+
component: string;
|
|
14
|
+
useWhen: string;
|
|
15
|
+
alternatives: Alternative[];
|
|
16
|
+
antiPatterns: AntiPattern[];
|
|
17
|
+
combinesWith: string[];
|
|
18
|
+
}
|
|
19
|
+
export interface CompositionRecipe {
|
|
20
|
+
name: string;
|
|
21
|
+
description: string;
|
|
22
|
+
tags: string[];
|
|
23
|
+
components: string[];
|
|
24
|
+
snippet: string;
|
|
25
|
+
}
|
|
26
|
+
export declare const componentCompositions: ComponentComposition[];
|
|
27
|
+
export declare const compositionRecipes: CompositionRecipe[];
|