General/Meekers-Modules.General.psd1

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

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

    # ID used to uniquely identify this module
    GUID = 'b7c28329-06e5-4b6f-bfb5-5d4199e1d38a'  # 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 = 'General 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 = @('Clear-DowloadsFolder', 'Get-MyIP', 'Get-LimeLargeFile', 'Get-FileSize')

    # 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 = @{

    }
}