PSWEE.psd1

@{
    RootModule            = 'PSWEE.psm1'
    ModuleVersion         = '1.0.0'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = 'd7f0058c-61c8-40d0-b30c-f0f142007c44'
    Author                = 'arnaudcharles'
    CompanyName           = 'arnaudcharles'
    Copyright             = '(c) 2025 arnaudcharles. All rights reserved.'
    Description           = 'PowerShell WinRM Exmulated Explorer Module'
    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'
    )
    FunctionsToExport     = @(
        'Start-PSWEE'
    )
    CmdletsToExport       = @()
    VariablesToExport     = @()
    AliasesToExport       = @(
        'wee'
        'weee'
        'weeee'
        'weeeee'
    )
    ModuleList            = @()
    FileList              = @(
        'assemblies/LsonLib.dll'
        'data/Config.psd1'
        'data/Settings.psd1'
        'formats/CultureInfo.Format.ps1xml'
        'formats/Mygciview.Format.ps1xml'
        'PSWEE.psm1'
        'scripts/loader.ps1'
        'types/DirectoryInfo.Types.ps1xml'
        'types/FileInfo.Types.ps1xml'
    )
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Linux'
                'MacOS'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/arnaudcharles/PSWEE/blob/main/LICENSE'
            ProjectUri = 'https://github.com/arnaudcharles/PSWEE'
            IconUri    = 'https://raw.githubusercontent.com/arnaudcharles/PSWEE/main/icon/icon.png'
        }
    }
}