LocalPilot.psd1

@{
    RootModule = 'LocalPilot.psm1'
    ModuleVersion = '1.0.0'
    CompatiblePSEditions = @('Desktop', 'Core')
    GUID = '5ab8688e-5372-42f0-aaf1-a5a699826a9f'
    Author = 'Matthew Bubb'
    CompanyName = 'OnYaChamp'
    Copyright = '(c) 2026 Matthew Bubb. All rights reserved.'
    Description = 'Zero-cloud workstation provisioning, Machine-as-Code declarative recipes, hardware birth certificates, and proactive local self-healing remediations for homelabbers, developers, and power users.'
    PowerShellVersion = '5.1'
    FunctionsToExport = @(
        'Get-LocalPilotRecipe',
        'Invoke-LocalPilot',
        'New-WorkstationBirthCertificate',
        'Invoke-LocalRemediation',
        'Register-LocalRemediation'
    )
    CmdletsToExport = @()
    VariablesToExport = @()
    AliasesToExport = @(
        'Start-LocalPilot',
        'Test-EndpointDrift'
    )
    PrivateData = @{
        PSData = @{
            Tags = @('homelab', 'workstation', 'provisioning', 'oobe', 'debloat', 'remediation', 'machine-as-code', 'winget', 'endpoint')
            LicenseUri = 'https://github.com/thebubbsy/LocalPilot/blob/main/LICENSE'
            ProjectUri = 'https://github.com/thebubbsy/LocalPilot'
            ReleaseNotes = 'v1.0.0: Initial release of LocalPilot. Declarative Machine-as-Code recipes, OOBE zero-cloud setup, hardware birth certificates, and proactive local endpoint remediation.'
        }
    }
}