Image2Text.psd1

@{
    # Module metadata
    RootModule         = 'Image2Text.psm1'
    ModuleVersion      = '1.0.4'
    GUID               = 'd3f9c5a2-7f3e-4c2f-9a1e-abc123456789'
    Author             = 'psdevuk'
    CompanyName        = 'PowerShellMagic'
    Description        = 'Converts images to ASCII art with optional color output and file export. Built for creative automation and terminal flair.'

    # Compatible with PowerShell 5.1 and 7+
    PowerShellVersion  = '7.0'
    CompatiblePSEditions = @('Desktop', 'Core')

    # Functions to export
    FunctionsToExport  = @('Convert-Image2Text')

    # Cmdlets, aliases, variables
    CmdletsToExport    = @()
    AliasesToExport    = @()
    VariablesToExport  = @()

    # Required assemblies
    RequiredAssemblies = @('Image2Text.dll')

    # Private data (optional)
    PrivateData = @{
        PSData = @{
            Tags         = @('ASCII', 'Image', 'Color', 'Terminal', 'Art', 'Export')
            ProjectUri   = 'https://powershellmagic.netlify.app/asciiart/'
            IconUri      = 'https://www.gravatar.com/avatar/aa37a353fed4270a1b0c39b827ee1d23d=mp'
            ReleaseNotes = 'Added support for color output, file saving, and plain text export.'
        }
    }
}