Nmap2PSObject.psd1

@{
    ModuleVersion = '1.0.1'
    GUID = 'd2e799f8-59f2-4c28-99c5-9aee9a3e0210'
    Author = 'Kalichuza'
    CompanyName = 'Kalichuza Inc.'
    Copyright = '(c) 2025 Kalichuza. All rights reserved.'
    Description = 'A module for parsing Nmap scan results into PowerShell objects.'
    CompatiblePSEditions = @('Core', 'Desktop')
    PowerShellVersion = '6.0'
    RootModule = 'Nmap2PSObject.psm1'
    FunctionsToExport = @('Get-NmapRegularScan', 'Get-NmapVersionScan', 'Get-NmapVulnScan', 'Format-NmapResults')
    CmdletsToExport = @()
    VariablesToExport = @()
    AliasesToExport = @()
    RequiredAssemblies = @()
    RequiredModules = @()
    PrivateData = @{}
}