NerdFonts.psd1

@{
    RootModule            = 'NerdFonts.psm1'
    ModuleVersion         = '1.0.12'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = '909b4fb1-27e0-4f6b-a4bd-bbfeefe80ada'
    Author                = 'PSModule'
    CompanyName           = 'PSModule'
    Copyright             = '(c) 2024 PSModule. All rights reserved.'
    Description           = 'A PowerShell module to download and install fonts from NerdFonts.'
    PowerShellVersion     = '5.1'
    ProcessorArchitecture = 'None'
    RequiredModules       = @(
        'Admin'
        'DynamicParams'
        'Fonts'
    )
    RequiredAssemblies    = @()
    ScriptsToProcess      = @()
    TypesToProcess        = @()
    FormatsToProcess      = @()
    NestedModules         = @()
    FunctionsToExport     = @(
        'Get-NerdFont'
        'Install-NerdFont'
    )
    CmdletsToExport       = @()
    VariablesToExport     = @()
    AliasesToExport       = @(
        'Get-NerdFonts'
        'Install-NerdFonts'
    )
    ModuleList            = @()
    FileList              = @()
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'fonts'
                'Linux'
                'MacOS'
                'module'
                'nerdfonts'
                'powershell'
                'powershell-module'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/PSModule/NerdFonts/blob/main/LICENSE'
            ProjectUri = 'https://github.com/PSModule/NerdFonts'
            IconUri    = 'https://raw.githubusercontent.com/PSModule/NerdFonts/main/icon/icon.png'
        }
    }
}