AutoItObfuscator.psd1

@{
    RootModule        = 'AutoItObfuscator.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'cb734343-7a9a-48e2-bffa-65e2f2af0830'
    Author            = 'Bartosz Wójcik'
    CompanyName       = 'PELock'
    Copyright         = '(c) 2026 Bartosz Wójcik / PELock. All rights reserved.'
    Description       = 'PowerShell Gallery Web API client for AutoIt Obfuscator. Obfuscate and protect AutoIt v3 .au3 source code via the PELock remote API.'
    PowerShellVersion = '5.1'
    FunctionsToExport = @(
        'New-AutoItObfuscator'
    )
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @(
                'AutoIt',
                'Obfuscator',
                'Obfuscation',
                'PELock',
                'API',
                'Security'
            )
            LicenseUri   = 'https://www.apache.org/licenses/LICENSE-2.0'
            ProjectUri   = 'https://www.pelock.com/products/autoit-obfuscator'
            IconUri      = 'https://www.pelock.com/img/en/products/autoit-obfuscator/autoit-obfuscator.png'
            ReleaseNotes = @'
## 1.0.0

- Initial PowerShell Gallery release
- AutoItObfuscator class — Web API client mirroring the PHP SDK
- New-AutoItObfuscator — factory for the client
- zlib compression helper matching the Python Obfuscator PowerShell module
'@

        }
    }
}