Winget/Meekers-Modules.Winget.psd1

@{
    # Script module or binary module file associated with this manifest.
    RootModule = 'Install-winget-latest.psm1'

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

    # ID used to uniquely identify this module
    GUID = '6e3cbd30-c730-4910-8fb1-dba6da4531f8'  # Replace with a new GUID

    # Author of this module
    Author = 'Alex Meeker'

    # Company or vendor of this module
    CompanyName = 'Meekers.net'

    # Description of the functionality provided by this module
    Description = 'Winget utilities for Meekers-Modules'

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

    # Functions to export from this module
    FunctionsToExport = @('Install-Winget-Latest')

    # Cmdlets to export from this module
    CmdletsToExport = @()

    # Variables to export from this module
    VariablesToExport = @()

    # Aliases to export from this module
    AliasesToExport = @()

    # Private data to pass to the module specified in RootModule/ModuleToProcess
    PrivateData = @{

    }
}