PublicIP.psd1

@{
    RootModule            = 'PublicIP.psm1'
    ModuleVersion         = '1.0.3'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = '350785ea-fffe-48b8-b93d-fbe9200f673b'
    Author                = 'PSModule'
    CompanyName           = 'PSModule'
    Copyright             = '(c) 2024 PSModule. All rights reserved.'
    Description           = 'A PowerShell module that helps getting info about your public IP.'
    PowerShellVersion     = '5.1'
    ProcessorArchitecture = 'None'
    RequiredAssemblies    = @()
    ScriptsToProcess      = @()
    TypesToProcess        = @()
    FormatsToProcess      = @()
    NestedModules         = @()
    FunctionsToExport     = 'Get-PublicIP'
    CmdletsToExport       = @()
    VariablesToExport     = @()
    AliasesToExport       = '*'
    ModuleList            = @()
    FileList              = @()
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Config'
                'IP'
                'IPConfig'
                'Linux'
                'MacOS'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Public'
                'PublicIP'
                'Windows'
            )
            LicenseUri = 'https://github.com/PSModule/PublicIP/blob/main/LICENSE'
            ProjectUri = 'https://github.com/PSModule/PublicIP'
            IconUri    = 'https://raw.githubusercontent.com/PSModule/PublicIP/main/icon/icon.png'
        }
    }
}