UNPKG

spex-mcp

Version:

MCP server for Figma SpeX plugin and Cursor AI integration

17 lines (14 loc) 490 B
/** * Shared utilities export module for spex-mcp * * This module provides a stable import path for all utility functions * that works consistently across different installation methods (npm, local development, etc.) */ // Export SVG to Vector Drawable utilities export { convertSvgToVectorDrawable, validateSvgContent } from './svg-to-vector-drawable.js'; // Future utility exports can be added here // Example: // export { someOtherUtility } from './other-utility.js';