VectorOps-PS.psd1

@{
    RootModule        = 'VectorOps-PS.psm1'
    ModuleVersion     = '1.1.0'
    GUID              = 'b516959d-8baa-4caf-9106-4caf930a777d'
    Author            = 'coffeyaveryon-spec'
    Copyright         = '(c) coffeyaveryon-spec. All rights reserved.'
    Description       = 'PowerShell module providing a Vector class and cmdlets for vector arithmetic: add, subtract, dot product, magnitude, and normalization.'
    PowerShellVersion = '5.1'

    FunctionsToExport = @(
        'New-Vector',
        'Add-Vector',
        'Get-VectorDifference',
        'Get-DotProduct',
        'Get-VectorMagnitude',
        'Get-NormalizedVector'
    )
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()

    PrivateData       = @{
        PSData = @{
            Tags         = @('Vector', 'Math', 'LinearAlgebra', 'PSEdition_Desktop', 'PSEdition_Core')
            ProjectUri   = 'https://github.com/coffeyaveryon-spec/VectorOps-PS'
            LicenseUri   = 'https://github.com/coffeyaveryon-spec/VectorOps-PS/blob/main/LICENSE'
            ReleaseNotes = 'https://github.com/coffeyaveryon-spec/VectorOps-PS/blob/main/CHANGELOG.md'
        }
    }
}