PSScriptModule.psd1

@{
    GUID              = 'a620849b-e411-460a-86ef-4c9e82a170ee'
    ModuleVersion     = '0.9.9'
    Author            = 'Marko Stanojevic'
    CompanyName       = 'Warehouse Finds'
    Copyright         = '(c) Warehouse Finds'
    Description       = 'A production-ready PowerShell script module template designed to streamline the creation, testing, and delivery of PowerShell modules.'
    RootModule        = 'PSScriptModule.psm1'
    FunctionsToExport = 'Get-PSScriptModuleInfo'
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @('Powershell', 'Script', 'Template', 'Module')
            ProjectUri   = 'https://github.com/warehousefinds/PSScriptModule.Template'
            LicenseUri   = 'https://github.com/WarehouseFinds/PSScriptModule.Template/blob/main/LICENSE'
            ReleaseNotes = 'https://github.com/WarehouseFinds/PSScriptModule.Template/releases'
        }
    }
}