Merc.psd1

@{
  # Module metadata
  RootModule        = 'Merc.psm1'
  ModuleVersion     = '1.1.0'
  GUID              = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'
  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   = 'https://github.com/jack-work/Merc/blob/master/LICENSE'
      ProjectUri   = 'https://github.com/jack-work/Merc'
      ReleaseNotes = 'Initial release. Requires fzf in PATH.'
    }
  }
}