Hashtable.psd1

@{
    RootModule            = 'Hashtable.psm1'
    ModuleVersion         = '0.0.2'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = '0d6f3ee6-a10d-462a-bf74-fd8838aeba99'
    Author                = 'PSModule'
    CompanyName           = 'PSModule'
    Copyright             = '(c) 2025 PSModule. All rights reserved.'
    Description           = 'A PowerShell module that simplifies some interaction with Hashtables.'
    PowerShellVersion     = '7.4'
    ProcessorArchitecture = 'None'
    TypesToProcess        = @()
    FormatsToProcess      = @()
    FunctionsToExport     = 'New-PSModuleTest'
    CmdletsToExport       = @()
    AliasesToExport       = @(
        'New-PSModuleTestAlias1'
        'New-PSModuleTestAlias2'
        'New-PSModuleTestAlias3'
        'New-PSModuleTestAlias4'
        'New-PSModuleTestAlias5'
    )
    ModuleList            = @()
    FileList              = 'Hashtable.psm1'
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Linux'
                'MacOS'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/PSModule/Hashtable/blob/main/LICENSE'
            ProjectUri = 'https://github.com/PSModule/Hashtable'
            IconUri    = 'https://raw.githubusercontent.com/PSModule/Hashtable/main/icon/icon.png'
        }
    }
}