Ast.psd1
@{ RootModule = 'Ast.psm1' ModuleVersion = '0.4.2' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = '94baa4e2-0c84-4b06-84d5-57ddc16fb923' 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 = '5.1' ProcessorArchitecture = 'None' TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = @( 'Get-AstCommand' 'Get-AstFunction' 'Get-AstScript' 'Get-AstFunctionAlias' 'Get-AstFunctionName' 'Get-AstFunctionType' 'Get-AstLineComment' 'Get-AstScriptCommand' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() ModuleList = @() FileList = 'Ast.psm1' PrivateData = @{ PSData = @{ Tags = @( 'Windows' 'Linux' 'MacOS' 'PSEdition_Desktop' 'PSEdition_Core' ) 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' } } } |