32 lines
646 B
TypeScript
32 lines
646 B
TypeScript
/**
|
|
* @push.rocks/smartregistry
|
|
* Composable registry supporting OCI, NPM, Maven, Cargo, Composer, PyPI, and RubyGems 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';
|
|
|
|
// Maven Registry
|
|
export * from './maven/index.js';
|
|
|
|
// Cargo Registry
|
|
export * from './cargo/index.js';
|
|
|
|
// Composer Registry
|
|
export * from './composer/index.js';
|
|
|
|
// PyPI Registry
|
|
export * from './pypi/index.js';
|
|
|
|
// RubyGems Registry
|
|
export * from './rubygems/index.js';
|