PSModuleBrowser.psd1

@{
    RootModule        = 'PSModuleBrowser.psm1'
    ModuleVersion     = '0.1.0'
    GUID              = 'a3f1c2d4-5e67-4b89-a012-3c4d5e6f7890'
    Author            = 'Jorgeasaurus'
    CompanyName       = 'Community'
    Copyright         = '(c) Jorgeasaurus. All rights reserved.'
    Description       = 'A premium terminal UI for browsing, searching, and installing PowerShell Gallery modules with arrow-key navigation, gradient rendering, and rich module details.'
    PowerShellVersion = '7.0'
    FunctionsToExport = @(
        'Start-PSModuleBrowser'
        'Search-PSModule'
        'Get-PSModuleInfo'
        'Get-PSModuleVersion'
        'Get-PSModuleDependency'
        'Get-PSModuleCommandPreview'
        'Install-PSModule'
    )
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @(
                'PSGallery'
                'TUI'
                'Terminal'
                'ModuleBrowser'
                'PowerShellGallery'
                'ModuleSearch'
                'PSEdition_Core'
            )
            LicenseUri   = 'https://github.com/jorgeasaurus/PSModuleBrowser/blob/main/LICENSE'
            ProjectUri   = 'https://github.com/jorgeasaurus/PSModuleBrowser'
            ReleaseNotes = @'
## v0.1.0
- Initial release
- Premium TUI with box-drawn borders and gradient rendering
- Arrow-key navigation with viewport scrolling
- Search by name, author, or exact match
- Module details, versions, dependencies, and command preview
- Install confirmation with provider detection
'@

        }
    }
}