GZip.psd1

@{
    RootModule            = 'GZip.psm1'
    ModuleVersion         = '0.0.1'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = '7d432cfe-6f4b-42c5-8479-de715e688a4e'
    Author                = 'PSModule'
    CompanyName           = 'PSModule'
    Copyright             = '(c) 2025 PSModule. All rights reserved.'
    Description           = 'A PowerShell Module that handles GZip archives'
    PowerShellVersion     = '7.4'
    ProcessorArchitecture = 'None'
    RequiredAssemblies    = @()
    ScriptsToProcess      = @()
    TypesToProcess        = @()
    FormatsToProcess      = @()
    NestedModules         = @()
    FunctionsToExport     = 'Get-PSModuleTest'
    CmdletsToExport       = @()
    ModuleList            = @()
    FileList              = 'GZip.psm1'
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Linux'
                'MacOS'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/PSModule/GZip/blob/main/LICENSE'
            ProjectUri = 'https://github.com/PSModule/GZip'
            IconUri    = 'https://raw.githubusercontent.com/PSModule/GZip/main/icon/icon.png'
        }
    }
}