Speech.Google.psd1

@{
    RootModule = 'Speech.Google.dll'
    ModuleVersion = '0.3.0'
    GUID = '8ff05eb8-8376-4111-9d0f-e8e71568e842'
    CompatiblePSEditions = @('Core')
    Author = 'Yoshifumi Tsuda'
    Copyright = 'Copyright (c) 2026 Yoshifumi Tsuda. MIT License.'
    Description = 'Google Cloud Speech Services for Speech module - Text-to-Speech and Speech-to-Text'
    PowerShellVersion = '7.4'

    RequiredModules = @(
        @{ModuleName='Speech.Core'; ModuleVersion='0.3.0'}
    )

    FormatsToProcess = @('Speech.Google.format.ps1xml')

    CmdletsToExport = @(
        'Out-GoogleSpeech',
        'Read-GoogleSpeech',
        'Get-GoogleSpeech',
        'Set-GoogleSpeechConfig'
    )

    FunctionsToExport = @()
    AliasesToExport = @()

    PrivateData = @{
        PSData = @{
            Tags = @('Speech', 'TTS', 'STT', 'Google', 'Cloud')
            IconUri = 'https://raw.githubusercontent.com/yotsuda/Speech/main/assets/icon.svg'
            LicenseUri = 'https://github.com/yotsuda/Speech/blob/main/LICENSE'
            ProjectUri = 'https://github.com/yotsuda/Speech'
            ReleaseNotes = 'v0.3.0 - Initial release. TTS and STT using Google Cloud Speech Services.'
        }
    }
}