#!/usr/bin/env node
/**
 * @module index
 * @description Entry point for the theme-cli package
 *
 * This file is the main entry point for the CLI and exports
 * all public APIs of the package to make them available for
 * programmatic usage.
 */
export { createCli, runCli } from "./cli.js";
export { createLogger } from "./utils/logger.js";
export { downloadFile, downloadAndSaveFile } from "./utils/download.js";
export { extractZip } from "./utils/zip.js";
export { initShopifyTheme } from "./commands/shopify/theme/init.js";
export * from "./types/index.js";
