UNPKG

revolutionary-ui

Version:

Revolutionary UI v3.0 - AI-Powered Interactive CLI with 10+ AI providers, website inspiration analyzer, and advanced code generation

26 lines (25 loc) 1.12 kB
/** * Revolutionary UI Factory - Main Export */ export { ProjectDetector } from './project-detector'; export { ProjectAnalyzer } from './project-analyzer'; export { AIAnalyzer } from './ai-analyzer'; export { SetupWizard } from './setup-wizard'; export { PackageInstaller } from './package-installer'; export { AuthManager } from './auth-manager'; export type { ProjectAnalysis, DetectedPackage, Recommendation } from './project-detector'; export type { AnalysisReport, ProjectSummary, CompatibilityReport, EnhancedRecommendation, MissingFeature, Optimization, SetupPlan } from './project-analyzer'; export type { AIRecommendation, AIAnalysisResult } from './ai-analyzer'; export type { WizardOptions, SelectionResult, WizardResult, ConfigFile } from './setup-wizard'; export type { InstallOptions, InstallResult } from './package-installer'; export declare const PACKAGE_STATS: { frameworks: number; uiLibraries: number; iconLibraries: number; totalIcons: number; designTools: number; colorTools: number; fonts: number; totalPackages: number; }; export declare const VERSION = "2.1.0";