Show-Variable.psd1

@{
  ModuleVersion      = '1.0.0'
  GUID               = '5ea1136a-d24c-4619-a1b7-21e356f6bade'
  Author             = 'Mustafa Talaeezadeh Khouzani'
  Copyright          = '(c) 2025 Mustafa Talaeezadeh Khouzani'
  Description        = 'PowerShell variable dumping to screen debug tool'
  FunctionsToExport  = @('Show-Variable')
  AliasesToExport    = @('Dump-Variable', 'Dump-Tree', 'dvar', 'dtree')
  RootModule         = 'Show-Variable.psm1'
  FileList           = @('Show-Variable.psd1','Show-Variable.psm1')
  PrivateData        = @{
    PSData = @{
      Tags         = @('debug','troubleshooting','development')
      LicenseUri   = 'https://raw.githubusercontent.com/khooz/Show-Variable/refs/heads/main/LICENSE'
      ProjectUri   = 'https://github.com/khooz/Show-Variable'
      ReleaseNotes = 'Initial release'
    }
  }
}