Poshify.psd1

@{
    RootModule = 'Poshify.psm1'
    ModuleVersion = '1.0.0'
    GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'
    Author = '@tamujin'
    CompanyName = 'kakoso.ai'
    Copyright = '(c) 2024 kakoso.ai. All rights reserved.'
    Description = 'A PowerShell module to help choose, download, and set Oh My Posh themes'
    PowerShellVersion = '5.1'
    FunctionsToExport = @(
        'Get-PoshTheme',
        'Install-PoshTheme',
        'Set-PoshTheme',
        'Uninstall-PoshTheme',
        'Show-PoshThemePreview'
    )
    CmdletsToExport = @()
    VariablesToExport = '*'
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = @('OhMyPosh', 'Theme', 'Terminal', 'Prompt')
            LicenseUri = ''
            ProjectUri = ''
            ReleaseNotes = 'Initial release of Poshify module'
        }
    }
}