discordrpc.psd1

#
# Module manifest for module 'discordprc'
#
@{

    # Script module or binary module file associated with this manifest.
    RootModule         = 'discordrpc.psm1'

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

    # ID used to uniquely identify this module
    GUID               = '0472bfcf-006c-4f50-b27d-fe146c3eef8d'

    # Author of this module
    Author             = 'Chrissy LeMaire'

    # Copyright statement for this module
    Copyright          = 'Copyright (c) 2022, licensed under MIT'

    # Description of the functionality provided by this module
    Description        = "Tell people you're playing PowerShell, send Rich Presence events to Discord!"

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

    # Modules that must be imported into the global environment prior to importing this module
    RequiredModules    = @()

    # Assemblies that must be loaded prior to importing this module
    RequiredAssemblies = @()

    # Format files (.ps1xml) to be loaded when importing this module
    FormatsToProcess   = @()

    # Functions to export from this module
    FunctionsToExport  = @(
        'Clear-DSTimestamp',
        'Get-DSClient',
        'Get-DSCurrentUser',
        'Get-DSTemplate',
        'Get-DSTimerEvent',
        'New-DSAsset',
        'New-DSButton',
        'New-DSClient',
        'New-DSLogger',
        'New-DSParty',
        'New-DSRichPresence',
        'New-DSSecret',
        'New-DSTimestamp',
        'Start-DSClient',
        'Stop-DSClient',
        'Update-DSAsset',
        'Update-DSButton',
        'Update-DSRichPresence',
        'Update-DSTimestamp'
    )

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

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

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

    PrivateData        = @{
        # PSData is module packaging and gallery metadata embedded in PrivateData
        # It's for rebuilding PowerShellGet (and PoshCode) NuGet-style packages
        # We had to do this because it's the only place we're allowed to extend the manifest
        # https://connect.microsoft.com/PowerShell/feedback/details/421837
        PSData = @{
            # The primary categorization of this module (from the TechNet Gallery tech tree).
            Category     = "Utilities"

            # Keyword tags to help users find this module via navigations and search.
            Tags         = @('discord','chat','discordrpc')

            # The web address of an icon which can be used in galleries to represent this module
            IconUri      = "https://github.com/potatoqualitee/discordrpc/raw/main/logo.png"

            # The web address of this module's project or support homepage.
            ProjectUri   = "https://github.com/potatoqualitee/discordrpc"

            # The web address of this module's license. Points to a page that's embeddable and linkable.
            LicenseUri   = "https://opensource.org/licenses/MIT"

            # Release notes for this particular version of the module
            ReleaseNotes = ""

            # If true, the LicenseUrl points to an end-user license (not just a source license) which requires the user agreement before use.
            # RequireLicenseAcceptance = ""

            # Indicates this is a pre-release/testing version of the module.
            IsPrerelease = 'True'
        }
    }
}