multi registry support v3

This commit is contained in:
2025-11-19 15:32:00 +00:00
parent e4480bff5d
commit 754ec7b7db
19 changed files with 1661 additions and 1740 deletions

View File

@@ -1,8 +1,16 @@
import * as plugins from './plugins.js';
/**
* @push.rocks/smartregistry
* Composable registry supporting OCI and NPM protocols
*/
// Export main classes
// Main orchestrator
export { SmartRegistry } from './classes.smartregistry.js';
export { RegistryStorage } from './classes.registrystorage.js';
// Export interfaces and types
export * from './interfaces.js';
// Core infrastructure
export * from './core/index.js';
// OCI Registry
export * from './oci/index.js';
// NPM Registry
export * from './npm/index.js';