PowerShellGallery.psd1
@{ RootModule = 'PowerShellGallery.psm1' ModuleVersion = '0.0.16' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'c8a418bc-0671-4439-8e4b-a91b439e4f5b' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2025 PSModule. All rights reserved.' Description = 'A PowerShell module for interacting with the PowerShell Gallery.' PowerShellVersion = '5.1' ProcessorArchitecture = 'None' TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = @( 'Get-PSGalleryAPI' 'Hide-PowerShellGalleryItem' 'Show-PowerShellGalleryItem' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @( 'Unlist-PowerShellGalleryItem' 'List-PowerShellGalleryItem' ) ModuleList = @() FileList = 'PowerShellGallery.psm1' PrivateData = @{ PSData = @{ Tags = @( 'module' 'powershell' 'powershellgallery' 'Windows' 'Linux' 'MacOS' 'PSEdition_Desktop' 'PSEdition_Core' ) 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' } } } |