Toml.psd1
|
@{ RootModule = 'Toml.psm1' ModuleVersion = '0.0.3' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'da711235-6c26-4fe2-8ce6-d3fe4da0dcb2' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2026 PSModule. All rights reserved.' Description = 'A PowerShell module to manage conversion of Toml to objects and objects to Toml' PowerShellVersion = '5.1' ProcessorArchitecture = 'None' TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = @( 'ConvertFrom-Toml' 'ConvertTo-Toml' 'Export-Toml' 'Format-Toml' 'Import-Toml' 'Merge-Toml' 'Test-Toml' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() ModuleList = @() FileList = @( 'enums/TomlValueKind.ps1' 'Toml.psm1' ) PrivateData = @{ PSData = @{ Tags = @( 'Linux' 'MacOS' 'PSEdition_Core' 'PSEdition_Desktop' 'Windows' ) LicenseUri = 'https://github.com/PSModule/Toml/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/Toml' IconUri = 'https://raw.githubusercontent.com/PSModule/Toml/main/icon/icon.png' } } } |