Enable-UnixTools.psd1

@{
    RootModule = 'Enable-UnixTools.psm1'
    ModuleVersion = '2.2.0'
    GUID = '95bf99a6-0e2d-4ec2-9f8d-63f44dc8f788'
    Author = 'softerist'
    CompanyName = 'softerist'
    Copyright = '(c) softerist. All rights reserved.'
    Description = 'Adds Unix-compatible tools (grep, sed, awk, etc.) to Windows PATH with optional shims, profile wrappers, and hardened install defaults.'

    PowerShellVersion = '5.1'
    CompatiblePSEditions = @('Desktop', 'Core')

    FunctionsToExport = @('Enable-UnixTools')
    CmdletsToExport = @()
    VariablesToExport = @()
    AliasesToExport = @()

    FileList = @(
        'Enable-UnixTools.psm1',
        'Enable-UnixTools.psd1',
        'Enable-UnixToolsSystemWide.ps1'
    )

    PrivateData = @{
        PSData = @{
            Tags = @('unix', 'windows', 'git', 'path', 'shims', 'cli')
            ProjectUri = 'https://github.com/softerist/agent-tools'
            LicenseUri = 'https://github.com/softerist/agent-tools/blob/main/LICENSE'
            ReleaseNotes = 'Initial module packaging for Enable-UnixToolsSystemWide with hardened defaults and safer publish/install flow.'
            RequireLicenseAcceptance = $false
        }
    }
}