PSGalleryTracker.psd1

@{
    RootModule           = 'PSGalleryTracker.psm1'
    ModuleVersion        = '0.1.0'
    CompatiblePSEditions = @('Desktop', 'Core')
    GUID                 = '84c73bf5-2cdb-4e1d-8654-7d3592e14cdf'
    Author               = 'Yoshifumi Tsuda'
    CompanyName          = 'Yoshifumi Tsuda'
    Copyright            = '(c) 2026 Yoshifumi Tsuda. All rights reserved.'
    Description          = 'Track PowerShell Gallery download statistics over time. Register modules, fetch download counts daily, and export to CSV for Excel charting.'
    PowerShellVersion    = '5.1'
    FunctionsToExport    = @(
        'Register-PSGalleryModule'
        'Unregister-PSGalleryModule'
        'Update-PSGalleryStats'
        'Get-PSGalleryStats'
        'Open-PSGalleryStats'
    )
    CmdletsToExport      = @()
    VariablesToExport     = @()
    AliasesToExport       = @()
    PrivateData = @{
        PSData = @{
            Tags       = @('PowerShellGallery', 'Downloads', 'Statistics', 'Tracking', 'Trends', 'Analytics')
            LicenseUri = 'https://github.com/yotsuda/PSGalleryTracker/blob/main/LICENSE'
            ProjectUri = 'https://github.com/yotsuda/PSGalleryTracker'
        }
    }
}