AST.psd1
@{ RootModule = 'AST.psm1' ModuleVersion = '0.3.0' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = '5beb971d-aa3e-4bfe-97cd-764e1a1fd37e' 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 = @() 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' } } } |