Yaml.psd1
|
@{ RootModule = 'Yaml.psm1' ModuleVersion = '1.0.0' CompatiblePSEditions = @( 'Core' ) GUID = '0c3d05df-56eb-4303-8360-0b01bbe71264' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2026 PSModule. All rights reserved.' Description = 'A PowerShell module for working with Yaml.' PowerShellVersion = '7.6' ProcessorArchitecture = 'None' TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = @( 'ConvertFrom-Yaml' 'ConvertTo-Yaml' 'Export-Yaml' 'Format-Yaml' 'Import-Yaml' 'Merge-Yaml' 'Test-Yaml' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() ModuleList = @() FileList = @( 'Yaml.psm1' ) PrivateData = @{ PSData = @{ Tags = @( 'Linux' 'MacOS' 'PSEdition_Core' 'Windows' ) LicenseUri = 'https://github.com/PSModule/Yaml/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/Yaml' IconUri = 'https://raw.githubusercontent.com/PSModule/Yaml/main/icon/icon.png' } } } |