IntuneOperator.psd1

@{
    RootModule            = 'IntuneOperator.psm1'
    ModuleVersion         = '0.0.4'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = '02e9c4a0-0eca-4010-9bdb-7a2aa4434f1f'
    Author                = 'Frederik Hjorslev Nylander'
    CompanyName           = 'hjorslev'
    Copyright             = '(c) 2026 Frederik Hjorslev Nylander. All rights reserved.'
    Description           = 'A PowerShell module for managing and enhancing Microsoft Intune.'
    PowerShellVersion     = '5.1'
    ProcessorArchitecture = 'None'
    RequiredModules       = @(
        @{
            ModuleName    = 'Microsoft.Graph.Authentication'
            ModuleVersion = '2.28.0'
        }
    )
    TypesToProcess        = @()
    FormatsToProcess      = @()
    FunctionsToExport     = @(
        'Get-IntuneDeviceLogin'
        'Get-IntuneRemediationDeviceStatus'
        'Get-IntuneRemediationSummary'
    )
    CmdletsToExport       = @()
    VariablesToExport     = @()
    AliasesToExport       = @()
    ModuleList            = @()
    FileList              = @(
        'IntuneOperator.psm1'
        'README.md'
    )
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Linux'
                'MacOS'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/hjorslev/IntuneOperator/blob/main/LICENSE'
            ProjectUri = 'https://github.com/hjorslev/IntuneOperator'
            IconUri    = 'https://raw.githubusercontent.com/hjorslev/IntuneOperator/main/icon/icon.png'
        }
    }
}