Toml.psd1

@{
    RootModule            = 'Toml.psm1'
    ModuleVersion         = '0.0.1'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = '94f6b719-3af4-4989-a4d2-5682f47d644f'
    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'
    RequiredAssemblies    = @(
        'assemblies/LsonLib.dll'
    )
    ScriptsToProcess      = @(
        'scripts/loader.ps1'
    )
    TypesToProcess        = @(
        'types/DirectoryInfo.Types.ps1xml'
        'types/FileInfo.Types.ps1xml'
    )
    FormatsToProcess      = @(
        'formats/CultureInfo.Format.ps1xml'
        'formats/Mygciview.Format.ps1xml'
    )
    NestedModules         = @(
        'modules/OtherPSModule.psm1'
    )
    FunctionsToExport     = @(
        'ConvertFrom-Toml'
    )
    CmdletsToExport       = @()
    VariablesToExport     = @(
        'Moons'
        'Planets'
        'SolarSystems'
    )
    AliasesToExport       = @()
    ModuleList            = @(
        'modules/OtherPSModule.psm1'
    )
    FileList              = @(
        'assemblies/LsonLib.dll'
        'formats/CultureInfo.Format.ps1xml'
        'formats/Mygciview.Format.ps1xml'
        'modules/OtherPSModule.psm1'
        'README.md'
        'scripts/loader.ps1'
        'Toml.psm1'
        'types/DirectoryInfo.Types.ps1xml'
        'types/FileInfo.Types.ps1xml'
    )
    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'
        }
    }
}