PSDice.psd1

#
# Module manifest for PSDice
#

@{
    RootModule        = 'PSDice.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '03d88ec6-6b39-491d-b537-4bb804c7bb43'
    Author            = 'Ba4bes'
    Description       = 'A PowerShell module for rolling dice. Supports any number of sides and dice, with optional sum output.'
    PowerShellVersion = '5.1'

    FunctionsToExport = @('Invoke-DiceRoll')
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()

    PrivateData = @{
        PSData = @{
            Tags       = @('Dice', 'Random', 'Game')
            ProjectUri = 'https://github.com/Ba4bes/PowerPilot'
        }
    }
}