Files
smartregistry/ts/index.ts

17 lines
330 B
TypeScript

/**
* @push.rocks/smartregistry
* Composable registry supporting OCI and NPM protocols
*/
// Main orchestrator
export { SmartRegistry } from './classes.smartregistry.js';
// Core infrastructure
export * from './core/index.js';
// OCI Registry
export * from './oci/index.js';
// NPM Registry
export * from './npm/index.js';