psubsonic.psd1

@{
    RootModule        = 'psubsonic.psm1'
    ModuleVersion     = '0.1.1'
    GUID              = '9fe85c90-7c4e-4b62-9185-9eee13ad216d'
    Author            = 'joshooaj'
    CompanyName       = 'joshooaj'
    Copyright         = '(c) Joshua Hendricks. All rights reserved.'
    Description       = 'Interact with any service implementing the Subsonic API'
    PowerShellVersion = '7.0'
    FunctionsToExport = @('Connect-PSubsonic','Get-PSubAlbum','Get-PSubArtist','Get-PSubIndex','Get-PSubLyrics','Get-PSubMusicFolder','Get-PSubNowPlaying','Get-PSubScanStatus','Get-PSubSong','Invoke-PSubMethod','Set-PSubRating','Set-PSubStar','Start-PSubScan')
    CmdletsToExport   = '*'
    VariablesToExport = '*'
    AliasesToExport   = '*'
    PrivateData       = @{
        PSData = @{
            # Tags = @()
            LicenseUri = 'https://github.com/joshooaj/PSubsonic/blob/main/LICENSE'
            ProjectUri = 'https://github.com/joshooaj/PSubsonic'
            # IconUri = ''
            ReleaseNotes = 'See the changelog at https://www.joshooaj.com/PSubsonic/CHANGELOG/'
        }
    }
}