UNPKG

@eventcatalog/license

Version:

License verification for EventCatalog

13 lines 653 B
/** * @eventcatalog/license - Offline license verification for EventCatalog * * Provides JWT-based license verification using Ed25519 signatures. * No external network calls required - all verification is done offline * using a bundled public key. */ // Re-export main verification functions export { verifyOfflineLicense, getEntitlements, clearCache, normalizePluginNames, hasOfflineLicenseKey } from './verify.js'; export { isEventCatalogStarterEnabled, isEventCatalogScaleEnabled, isFeatureEnabled } from './plans.js'; // Re-export key loading (for advanced use cases) export { loadPublicPem } from './key.js'; //# sourceMappingURL=index.js.map