@lerpa/mcp-server 0.1.0 → 0.2.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.js +1 -1
- package/package.json +1 -1
- package/registry/registry.json +779 -779
package/dist/index.js
CHANGED
|
@@ -47,7 +47,7 @@ function firstExisting(...candidates) {
|
|
|
47
47
|
// source of truth for list/get/search. component-catalog.json adds human
|
|
48
48
|
// descriptions + category tags.
|
|
49
49
|
const REGISTRY_JSON = firstExisting(path.join(PKG_ROOT, "registry", "registry.json"), path.join(REPO_ROOT, "packages", "registry", "generated", "registry.json"));
|
|
50
|
-
const CATALOG_JSON = firstExisting(path.join(PKG_ROOT, "registry", "component-catalog.json"), path.join(REPO_ROOT, "apps", "docs", "src", "data", "component-catalog.json"));
|
|
50
|
+
const CATALOG_JSON = firstExisting(path.join(PKG_ROOT, "registry", "component-catalog.json"), path.join(REPO_ROOT, "packages", "registry", "generated", "component-catalog.json"), path.join(REPO_ROOT, "apps", "docs", "src", "data", "component-catalog.json"));
|
|
51
51
|
// ---------------------------------------------------------------------------
|
|
52
52
|
// Lazy-loaded data (only read once per process).
|
|
53
53
|
// ---------------------------------------------------------------------------
|
package/package.json
CHANGED