@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.
@@ -0,0 +1,41 @@
1
+ import { type AiSurfaceEntry } from './ai-surface.js';
2
+ export declare const contractJsonPath: string;
3
+ export declare const contractSchemaPath: string;
4
+ export interface ContractV1 {
5
+ readonly schema: 'DryUIContractV1';
6
+ readonly version: 1;
7
+ readonly package: {
8
+ readonly name: string;
9
+ readonly version: string;
10
+ };
11
+ readonly counts: {
12
+ readonly components: number;
13
+ readonly compositionComponents: number;
14
+ readonly compositionRecipes: number;
15
+ readonly tools: number;
16
+ readonly prompts: number;
17
+ readonly cliCommands: number;
18
+ };
19
+ readonly themeImports: {
20
+ readonly default: string;
21
+ readonly dark: string;
22
+ };
23
+ readonly ai: {
24
+ readonly tools: readonly AiSurfaceEntry[];
25
+ readonly prompts: readonly AiSurfaceEntry[];
26
+ readonly cliCommands: readonly AiSurfaceEntry[];
27
+ };
28
+ readonly components: Record<string, unknown>;
29
+ readonly composition: {
30
+ readonly components: Record<string, unknown>;
31
+ readonly recipes: Record<string, unknown>;
32
+ };
33
+ }
34
+ export interface ContractArtifacts {
35
+ readonly contract: ContractV1;
36
+ readonly contractJson: string;
37
+ readonly schemaJson: string;
38
+ }
39
+ export declare function buildContractV1(): ContractV1;
40
+ export declare function buildContractArtifacts(): ContractArtifacts;
41
+ export declare function writeContractArtifacts(): Promise<void>;