PowerShellGallery.psd1
@{ RootModule = 'PowerShellGallery.psm1' ModuleVersion = '0.0.13' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'c1269647-f65d-488d-869c-d799da619c80' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2024 PSModule. All rights reserved.' Description = 'A PowerShell module for interacting with the PowerShell Gallery.' PowerShellVersion = '7.4' ProcessorArchitecture = 'None' RequiredAssemblies = @() ScriptsToProcess = @() TypesToProcess = @() FormatsToProcess = @() NestedModules = @() FunctionsToExport = @( 'Get-PSGalleryAPI' 'Hide-PowerShellGalleryItem' 'Show-PowerShellGalleryItem' ) CmdletsToExport = @() AliasesToExport = @( 'List-PowerShellGalleryItem' 'Unlist-PowerShellGalleryItem' ) ModuleList = @() FileList = 'PowerShellGallery.psm1' 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' } } } |