UNPKG

templui-mcp-server

Version:

A Model Context Protocol (MCP) server for TemplUI components, providing AI assistants with access to component source code, documentation, demos, and metadata.

10 lines 273 B
export async function readVersion(fallback = "1.0.0") { try { // In a real implementation, you might read from package.json or another source return fallback; } catch (error) { return fallback; } } //# sourceMappingURL=version.js.map