Json.psd1

@{
    RootModule            = 'Json.psm1'
    ModuleVersion         = '1.1.0'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = '28f2b19a-de76-4b0d-9344-51b17b9f9d59'
    Author                = 'PSModule'
    CompanyName           = 'PSModule'
    Copyright             = '(c) 2025 PSModule. All rights reserved.'
    Description           = 'A PowerShell module for typical Json related tasks.'
    PowerShellVersion     = '5.1'
    ProcessorArchitecture = 'None'
    TypesToProcess        = @()
    FormatsToProcess      = @()
    FunctionsToExport     = @(
        'Format-Json'
        'Import-Json'
    )
    CmdletsToExport       = @()
    VariablesToExport     = @()
    AliasesToExport       = @()
    ModuleList            = @()
    FileList              = @(
        'Json.psm1'
    )
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Linux'
                'MacOS'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/PSModule/Json/blob/main/LICENSE'
            ProjectUri = 'https://github.com/PSModule/Json'
            IconUri    = 'https://raw.githubusercontent.com/PSModule/Json/main/icon/icon.png'
        }
    }
}