2025-11-19 15:32:00 +00:00
|
|
|
/**
|
|
|
|
|
* @push.rocks/smartregistry
|
|
|
|
|
* Composable registry supporting OCI and NPM protocols
|
|
|
|
|
*/
|
2025-11-19 14:41:19 +00:00
|
|
|
|
2025-11-19 15:32:00 +00:00
|
|
|
// Main orchestrator
|
2025-11-19 15:16:20 +00:00
|
|
|
export { SmartRegistry } from './classes.smartregistry.js';
|
|
|
|
|
|
2025-11-19 15:32:00 +00:00
|
|
|
// Core infrastructure
|
|
|
|
|
export * from './core/index.js';
|
|
|
|
|
|
|
|
|
|
// OCI Registry
|
|
|
|
|
export * from './oci/index.js';
|
|
|
|
|
|
|
|
|
|
// NPM Registry
|
|
|
|
|
export * from './npm/index.js';
|