PSCredential.psd1

@{
    RootModule            = 'PSCredential.psm1'
    ModuleVersion         = '1.0.1'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = 'e0699f6e-5f67-4db0-86fd-2001966ca591'
    Author                = 'PSModule'
    CompanyName           = 'PSModule'
    Copyright             = '(c) 2025 PSModule. All rights reserved.'
    Description           = 'A Powershell module to manage PSCredentials'
    PowerShellVersion     = '7.4'
    ProcessorArchitecture = 'None'
    TypesToProcess        = @()
    FormatsToProcess      = @()
    FunctionsToExport     = @(
        'New-PSCredential'
        'Restore-PSCredential'
        'Save-PSCredential'
    )
    CmdletsToExport       = @()
    AliasesToExport       = @(
        'Import-PSCredential'
    )
    ModuleList            = @()
    FileList              = 'PSCredential.psm1'
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Linux'
                'MacOS'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/PSModule/PSCredential/blob/main/LICENSE'
            ProjectUri = 'https://github.com/PSModule/PSCredential'
            IconUri    = 'https://raw.githubusercontent.com/PSModule/PSCredential/main/icon/icon.png'
        }
    }
}