AST.psd1
@{ RootModule = 'AST.psm1' ModuleVersion = '0.2.3' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = '5c890398-c022-4481-873d-5a1f3ca44817' 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-FunctionAST' 'Get-ScriptAST' 'Get-FunctionAlias' 'Get-FunctionName' 'Get-FunctionType' 'Get-LineComment' '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' } } } |