PSTerminalAnimations.psd1

@{
    RootModule = 'PSTerminalAnimations.psm1'
    ModuleVersion = '1.0.3'
    GUID = '762f4733-ecf6-4a57-8169-6e99e5905a3c'
    Author = 'Jaya Surya Pennada'
    Copyright = '(c) 2026 Jaya Surya Pennada. All rights reserved.'
    Description = 'Terminal Animations - ASCII Art Edition. Provides various ASCII animations for different execution scenarios in PowerShell. Compatible with PowerShell 5.1+ and 7+.'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Show-Animation', 'Show-AnimatedWait', 'Get-AvailableAnimations', 'Show-AllAnimations', 'Test-Animation', 'Invoke-WithAnimation')
    CmdletsToExport = @()
    VariablesToExport = @()
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = @('ASCII', 'PSTerminalAnimations', 'Animation', 'Terminal', 'PowerShell', 'Utilities')
            FileList = @('PSTerminalAnimations.psm1', 'PSTerminalAnimations.psd1', 'README.md', 'LICENSE')
            ReleaseNotes = 'Version 1.0.3 - Patch release: small fixes and README polish. Ensures PS5 compatibility and updates metadata for the release.'
        }
    }
}