UNPKG

ordojs

Version:

A revolutionary web framework with compile-time optimizations and unified client-server development

22 lines 594 B
/** * @fileoverview Core OrdoJS Framework - Main entry point * @author OrdoJS Framework Team */ export * from './accessibility/index.js'; export * from './compiler/index.js'; export * from './i18n/index.js'; export * from './runtime/index.js'; export * from './types/index.js'; /** * Version information for the OrdoJS core package */ export const VERSION = '0.1.0'; /** * Framework metadata */ export const FRAMEWORK_INFO = { name: 'OrdoJS', version: VERSION, description: 'A revolutionary web framework with compile-time optimizations', }; //# sourceMappingURL=index.js.map