PowerShellGallery.psd1
@{ RootModule = 'PowerShellGallery.psm1' ModuleVersion = '0.0.12' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'c1e7cecc-c6dc-43c2-b041-cc80d06051d8' 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 = @( 'List-PowerShellGalleryItem' 'Unlist-PowerShellGalleryItem' ) 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' } } } |