GoogleFonts.psd1

@{
    RootModule            = 'GoogleFonts.psm1'
    ModuleVersion         = '1.0.0'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = '40734b99-c8d2-4f62-b6fc-96668101f770'
    Author                = 'PSModule'
    CompanyName           = 'PSModule'
    Copyright             = '(c) 2025 PSModule. All rights reserved.'
    Description           = 'A PowerShell module to download and install fonts from GoogleFonts.'
    PowerShellVersion     = '7.4'
    ProcessorArchitecture = 'None'
    RequiredModules       = @(
        @{
            ModuleName      = 'Admin'
            RequiredVersion = '1.1.1'
        }
        @{
            ModuleName      = 'Fonts'
            RequiredVersion = '1.1.11'
        }
    )
    RequiredAssemblies    = @()
    ScriptsToProcess      = @()
    TypesToProcess        = @()
    FormatsToProcess      = @()
    NestedModules         = @()
    FunctionsToExport     = @(
        'Get-GoogleFont'
        'Install-GoogleFont'
    )
    CmdletsToExport       = @()
    AliasesToExport       = @(
        'Get-GoogleFonts'
        'Install-GoogleFonts'
    )
    ModuleList            = @()
    FileList              = 'GoogleFonts.psm1'
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'google-fonts'
                'Linux'
                'MacOS'
                'powershell'
                'powershell-module'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/PSModule/GoogleFonts/blob/main/LICENSE'
            ProjectUri = 'https://github.com/PSModule/GoogleFonts'
            IconUri    = 'https://raw.githubusercontent.com/PSModule/GoogleFonts/main/icon/icon.png'
            Prerelease = 'ready2'
        }
    }
}