@astermind/astermind-premium
Version:
Astermind Premium - Premium ML Toolkit
15 lines • 939 B
JavaScript
// Astermind Premium - Premium ML Toolkit
// Extends Astermind Elm and Astermind Pro with unified licensing
// All APIs are public and extensible - no private APIs
// Initialize license system (loads config if token is set)
import './config/license-config.js';
// License Management
export { initializeLicense, requireLicense, checkLicense, checkSynthLicense, getLicenseStatus, setLicenseTokenFromString, getCurrentLicenseToken, isLicenseInitialized } from './core/license.js';
// Export everything from Astermind Pro (premium features)
// Note: Astermind Pro already depends on Astermind Elm, so Elm's APIs are available through Pro
// Users can also import directly from @astermind/astermind-elm if they need direct Elm APIs
export * from '@astermind/astermind-pro';
// Export Premium-specific ELM variants
// These extend Pro's variants with additional advanced features
export * from './elm/index.js';
//# sourceMappingURL=index.js.map