Start-JellyfinLibraryScan.psd1

@{
    RootModule        = 'Start-JellyfinLibraryScan.psm1'
    ModuleVersion     = '1.0.9'
    GUID              = 'd0e8b7e1-9b3f-4b0c-c9d5-2e3f0a1c4f5b' # Use a valid GUID
    Author            = 'Jared Heinrichs'
    CompanyName       = 'https://jaredheinrichs.substack.com/'
    Description       = 'Functions to start Jellyfin library scans and manage server API configurations.'
    FunctionsToExport = @(
        'Start-JellyfinLibraryScan',
        'Get-JellyfinLibraryScanConfig',
        'Start-JellyfinLibraryScanCleaner'
    )
    VariablesToExport = @()
    AliasesToExport   = @()
    CmdletsToExport   = @()
    PrivateData       = @{
        PSData = @{
            LicenseUri   = 'https://opensource.org/licenses/MIT'
            ProjectUri   = 'https://github.com/yourusername/Start-JellyfinLibraryScan'
            Tags         = @('Jellyfin','Library','Scan','API')
            ReleaseNotes = 'Initial release of the Start-JellyfinLibraryScan module.'
        }
    }
}