Toolbox.DotEnv.psd1

@{
    GUID                 = "e909c9d6-1742-4d1c-b8a9-ee203d097c5d"
    Author               = "Éwerton Ferreira"
    CompanyName          = "Éwerton Ferreira"
    Copyright            = "© 2026 Éwerton Ferreira. All rights reserved."
    Description          = "Utilities for managing .env files with PowerShell."
    RootModule           = "Toolbox.DotEnv.psm1"
    RequiredModules      = @()
    CompatiblePSEditions = @("Desktop", "Core")
    PowerShellVersion    = "5.1.0"
    ModuleVersion        = "1.0.0"
    FunctionsToExport    = @(
        "ConvertFrom-DotEnv",
        "ConvertTo-DotEnv",
        "Get-DotEnv",
        "Get-DotEnvValue",
        "Import-DotEnv",
        "Import-DotEnvValue",
        "Set-DotEnv",
        "Set-DotEnvValue",
        "Test-DotEnv",
        "Test-DotEnvValue"
    )
    CmdletsToExport      = @()
    VariablesToExport    = @()
    AliasesToExport      = @()
    PrivateData          = @{
        PSData = @{
            Tags         = @("Toolbox", "DotEnv", "Environment", "Configuration")
            IconUri      = "https://raw.githubusercontent.com/thewerthon/Toolbox/main/Resources/Icons/icon_plain_128.png"
            ProjectUri   = "https://github.com/thewerthon/Toolbox"
            LicenseUri   = "https://github.com/thewerthon/Toolbox/blob/main/LICENSE.txt"
            ReleaseNotes = "Initial release."
        }
    }
}