Ast.psd1
@{ RootModule = 'Ast.psm1' ModuleVersion = '0.4.1' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'df79ffdf-6ab1-49b2-bf37-9ab7dc675e5e' 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' TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = @( 'Get-AstCommand' 'Get-AstFunction' 'Get-AstScript' 'Get-AstFunctionAlias' 'Get-AstFunctionName' 'Get-AstFunctionType' 'Get-AstLineComment' 'Get-AstScriptCommand' ) CmdletsToExport = @() VariablesToExport = @() 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' } } } |