GraphShell.psd1

@{
    RootModule        = 'GraphShell.psm1'
    ModuleVersion      = '0.1.0'
    GUID               = '963bcd95-8cc5-46bb-9740-9c38f26588c3'
    Author             = 'Josimar Honorato'
    CompanyName        = 'GraphShell'
    Copyright          = '(c) GraphShell. All rights reserved.'
    Description        = 'Explore and map Microsoft Graph PowerShell cmdlets, REST endpoints, permissions, modules and API metadata directly from PowerShell. GraphShell does not replace the Microsoft Graph PowerShell SDK and does not call the Microsoft Graph API or your tenant; it explains and relates the Graph surface using the same catalog that powers the GraphShell Explorer web app (https://explorer.graphshell.cloud/).'
    PowerShellVersion  = '5.1'
    CompatiblePSEditions = @('Desktop', 'Core')
    FunctionsToExport  = @('Get-GraphMapping', 'Get-GraphDetail')
    CmdletsToExport    = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData        = @{
        PSData = @{
            Tags         = @('MicrosoftGraph', 'Graph', 'PowerShell', 'EntraID', 'Identity', 'IAM', 'Microsoft365', 'Azure')
            ProjectUri   = 'https://github.com/josimarh/GraphShell-Translator'
            LicenseUri   = 'https://github.com/josimarh/GraphShell-Translator/blob/main/LICENSE'
            ReleaseNotes = 'v0.1.0: initial preview. Get-GraphMapping and Get-GraphDetail, backed by the shared GraphShell catalog. Not yet published to the PowerShell Gallery.'
        }
    }
}