Merc.psd1

@{
    # Module metadata
    RootModule        = 'Merc.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '9d88af1b-3382-40a1-a72d-f944ccf34acd'
    Author            = 'jokellih'
    CompanyName       = 'Unknown'
    Copyright         = '(c) 2026. All rights reserved.'
    Description       = 'Interactive process killer with fzf and window title support. Merc your processes with style.'

    # Requirements
    PowerShellVersion = '7.0'
    CompatiblePSEditions = @('Core')

    # What this module exports
    FunctionsToExport = @('Invoke-Merc')
    AliasesToExport   = @('merc')
    CmdletsToExport   = @()
    VariablesToExport = @()

    # External dependencies (informational)
    PrivateData       = @{
        PSData = @{
            Tags         = @('fzf', 'process', 'kill', 'interactive', 'windows')
            LicenseUri   = ''
            ProjectUri   = ''
            ReleaseNotes = 'Initial release. Requires fzf in PATH.'
        }
    }
}