KHZ.psd1

@{
    ModuleVersion     = '1.0.0'
    GUID              = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'
    Author            = 'Sulaiman Alshammari'
    CompanyName       = 'GRATECH / Khawrizm Labs'
    Copyright         = '(c) 2026 Sulaiman Alshammari. MIT License.'
    Description       = 'KHZ - Sovereign DevOps Pipeline. No cloud, no YAML hell, no hallucinations. Runs anywhere PowerShell runs.'
    PowerShellVersion = '5.1'
    RootModule        = 'KHZ.psm1'
    FunctionsToExport = @(
        'Invoke-KHZDoctor',
        'Invoke-KHZPipeline',
        'Get-KHZVersion',
        'New-KHZConfig',
        'Write-KHZLog'
    )
    PrivateData = @{
        PSData = @{
            Tags         = @('DevOps','Pipeline','CI','CD','Sovereign','Offline','NoCloud','SysAdmin','Deploy','Build')
            LicenseUri   = 'https://github.com/Grar00t/KHZ/blob/main/LICENSE'
            ProjectUri   = 'https://github.com/Grar00t/KHZ'
            IconUri      = ''
            ReleaseNotes = @'
v1.0.0 - Initial release
- Invoke-KHZPipeline: Full pipeline with Validate, Build, Test, Deploy, Notify stages
- Invoke-KHZDoctor: Auto-detect and fix missing tools
- New-KHZConfig: Generate starter config
- No cloud required. No YAML. No hallucinations.
'@

        }
    }
}