PowerShellGallery.psd1

@{
    RootModule            = 'PowerShellGallery.psm1'
    ModuleVersion         = '0.0.8'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = 'b9f66c91-0f51-4ec6-b81d-5f718a3f4fdf'
    Author                = 'PSModule'
    CompanyName           = 'PSModule'
    Copyright             = '(c) 2024 PSModule. All rights reserved.'
    Description           = 'A PowerShell module for interacting with the PowerShell Gallery.'
    PowerShellVersion     = '5.1'
    ProcessorArchitecture = 'None'
    RequiredAssemblies    = @()
    ScriptsToProcess      = @()
    TypesToProcess        = @()
    FormatsToProcess      = @()
    NestedModules         = @()
    FunctionsToExport     = @(
        'Get-PSGalleryAPI'
        'Get-PSGalleryResource'
        'Hide-PowerShellGalleryItem'
        'Show-PowerShellGalleryItem'
    )
    CmdletsToExport       = @()
    VariablesToExport     = @()
    AliasesToExport       = '*'
    ModuleList            = @()
    FileList              = @()
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Linux'
                'MacOS'
                'module'
                'powershell'
                'powershellgallery'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/PSModule/PowerShellGallery/blob/main/LICENSE'
            ProjectUri = 'https://github.com/PSModule/PowerShellGallery'
            IconUri    = 'https://raw.githubusercontent.com/PSModule/PowerShellGallery/main/icon/icon.png'
        }
    }
}