/** * Plugin Management Module * * Re-exports all public APIs for plugin registry management, * marketplace operations, package reading, and migration resolution. */ export { PLUGIN_REGISTRY_SCHEMA_VERSION, PLUGIN_REGISTRY_FILENAME, MARKETPLACE_MANIFEST_FILENAME, MANIFEST_PATH_FILENAME, } from "./types"; export type { PluginScope, PluginRegistryEntry, PluginRegistry, MarketplaceManifest, MarketplacePluginEntry, MigrationDescriptor, PluginPackageInfo, } from "./types"; export { getRegistryPath, getMarketplacesDir, getMarketplaceDir, } from "./paths"; export { readPluginRegistry, writePluginRegistry, getPluginEntry, upsertPluginEntry, removePluginEntry, listPluginEntries, } from "./registry"; export { cloneMarketplace, updateMarketplace, readMarketplaceManifest, listMarketplacePlugins, resolvePluginPackagePath, deriveMarketplaceName, listMarketplaces, } from "./marketplace"; export { readPluginPackage, readInstallInstructions, readUninstallInstructions, readConfigureInstructions, listMigrations, readMigration, } from "./packageReader"; export { parseMigrationFilename, buildMigrationGraph, findMigrationPath, resolveMigrationChain, } from "./migrations"; //# sourceMappingURL=index.d.ts.map