.history/PSGalleryBatch_20260310021137.psd1

@{
    # Script module or binary module file associated with this manifest.
    RootModule        = 'PSGalleryBatch.psm1'

    # Version number of this module.
    ModuleVersion     = '1.0.0'

    # Supported PSEditions
    # CompatiblePSEditions = @()

    # ID used to uniquely identify this module
    GUID              = 'a8d6e3c4-9f2b-4b1a-8c3d-7e9f5a6b8c9d'

    # Author of this module
    Author            = 'Matthew Bubb'

    # Company or vendor of this module
    CompanyName       = 'Matthew Bubb'

    # Copyright statement for this module
    Copyright         = '(c) 2026 Matthew Bubb. All rights reserved.'

    # Description of the functionality provided by this module
    Description       = 'Batch search, install, and update modules from PowerShell Gallery with an optional Spectre Console UI or Out-GridView fallback. Supports wildcards and prerelease versions.'

    # Minimum version of the PowerShell engine required by this module
    PowerShellVersion = '5.1'

    # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
    FunctionsToExport = @('Find-GalleryModuleBatch', 'Install-GalleryModuleBatch', 'Update-GalleryModuleBatch')

    # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
    CmdletsToExport   = @()

    # Variables to export from this module
    VariablesToExport = '*'

    # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
    AliasesToExport   = @()

    # Private data to pass to the module specified in RootModule. This is typically used to store custom data used by the module.
    PrivateData = @{
        PSData = @{
            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @('PSGallery', 'Batch', 'Installer', 'ModuleManagement', 'SpectreConsole', 'Bubbsy')

            # URI to the license for this module.
            LicenseUri = 'https://opensource.org/licenses/MIT'

            # URI to the main website for this project.
            ProjectUri = 'https://github.com/thebubbsy/PSGalleryBatch'

            # URI to an image serving as a logo for this module.
            # IconUri = ''

            # ReleaseNotes of this module
            # ReleaseNotes = ''
        } # End of PSData hashtable
    } # End of PrivateData hashtable
}