Anthropic.psd1

@{
    RootModule            = 'Anthropic.psm1'
    ModuleVersion         = '0.0.3'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = '0c5d79bf-10e3-41be-b999-612f5039b4f7'
    Author                = 'PSModule'
    CompanyName           = 'PSModule'
    Copyright             = '(c) 2025 PSModule. All rights reserved.'
    Description           = 'A PowerShell module for interacting with Anthropic APIs'
    PowerShellVersion     = '5.1'
    ProcessorArchitecture = 'None'
    RequiredModules       = @(
        'Utilities'
    )
    TypesToProcess        = @()
    FormatsToProcess      = @()
    FunctionsToExport     = @(
        'Get-PSModuleTest'
    )
    CmdletsToExport       = @()
    VariablesToExport     = @()
    AliasesToExport       = @()
    ModuleList            = @()
    FileList              = @(
        'Anthropic.psm1'
    )
    PrivateData           = @{
        PSData = @{
            Tags       = @(
                'Linux'
                'MacOS'
                'PSEdition_Core'
                'PSEdition_Desktop'
                'Windows'
            )
            LicenseUri = 'https://github.com/PSModule/Anthropic/blob/main/LICENSE'
            ProjectUri = 'https://github.com/PSModule/Anthropic'
            IconUri    = 'https://raw.githubusercontent.com/PSModule/Anthropic/main/icon/icon.png'
        }
    }
}