AST.psd1

@{
    RootModule            = 'AST.psm1'
    ModuleVersion         = '0.2.2'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = 'b3bdcef7-ae15-4bf1-9d4a-c803ab2c4060'
    Author                = 'PSModule'
    CompanyName           = 'PSModule'
    Copyright             = '(c) 2025 PSModule. All rights reserved.'
    Description           = 'A PowerShell module for using the Abstract Syntax Tree (AST) to analyze any PowerShell code.'
    PowerShellVersion     = '7.4'
    ProcessorArchitecture = 'None'
    RequiredAssemblies    = @()
    ScriptsToProcess      = @()
    TypesToProcess        = @()
    FormatsToProcess      = @()
    NestedModules         = @()
    FunctionsToExport     = @(
        'Get-FunctionAST'
        'Get-ScriptAST'
        'Get-FunctionAlias'
        'Get-FunctionName'
        'Get-FunctionType'
        'Get-ScriptCommand'
    )
    CmdletsToExport       = @()
    AliasesToExport       = @(
        'Get-ScriptCommands'
    )
    ModuleList            = @()
    FileList              = 'AST.psm1'
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Linux'
                'MacOS'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/PSModule/AST/blob/main/LICENSE'
            ProjectUri = 'https://github.com/PSModule/AST'
            IconUri    = 'https://raw.githubusercontent.com/PSModule/AST/main/icon/icon.png'
        }
    }
}