@idealyst/mcp-server 1.2.18 → 1.2.20
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/data/recipes.d.ts +36 -0
- package/dist/data/recipes.d.ts.map +1 -0
- package/dist/data/recipes.js +2201 -0
- package/dist/data/recipes.js.map +1 -0
- package/dist/index.js +217 -0
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Idealyst Recipes - Common UI Patterns
|
|
3
|
+
* Ready-to-use code examples for building apps with Idealyst
|
|
4
|
+
*/
|
|
5
|
+
export interface Recipe {
|
|
6
|
+
name: string;
|
|
7
|
+
description: string;
|
|
8
|
+
category: "forms" | "navigation" | "data" | "layout" | "auth" | "settings" | "media";
|
|
9
|
+
difficulty: "beginner" | "intermediate" | "advanced";
|
|
10
|
+
packages: string[];
|
|
11
|
+
code: string;
|
|
12
|
+
explanation: string;
|
|
13
|
+
tips?: string[];
|
|
14
|
+
relatedRecipes?: string[];
|
|
15
|
+
}
|
|
16
|
+
export declare const recipes: Record<string, Recipe>;
|
|
17
|
+
/**
|
|
18
|
+
* Get all recipes grouped by category
|
|
19
|
+
*/
|
|
20
|
+
export declare function getRecipesByCategory(): Record<string, Recipe[]>;
|
|
21
|
+
/**
|
|
22
|
+
* Get a summary list of all recipes
|
|
23
|
+
*/
|
|
24
|
+
export declare function getRecipeSummary(): Array<{
|
|
25
|
+
id: string;
|
|
26
|
+
name: string;
|
|
27
|
+
description: string;
|
|
28
|
+
category: string;
|
|
29
|
+
difficulty: string;
|
|
30
|
+
packages: string[];
|
|
31
|
+
}>;
|
|
32
|
+
/**
|
|
33
|
+
* Search recipes by query
|
|
34
|
+
*/
|
|
35
|
+
export declare function searchRecipes(query: string): Recipe[];
|
|
36
|
+
//# sourceMappingURL=recipes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"recipes.d.ts","sourceRoot":"","sources":["../../src/data/recipes.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,MAAM;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,GAAG,YAAY,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,UAAU,GAAG,OAAO,CAAC;IACrF,UAAU,EAAE,UAAU,GAAG,cAAc,GAAG,UAAU,CAAC;IACrD,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;CAC3B;AAED,eAAO,MAAM,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CA2nE1C,CAAC;AAEF;;GAEG;AACH,wBAAgB,oBAAoB,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAW/D;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,KAAK,CAAC;IACxC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB,CAAC,CASD;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CAUrD"}
|