GitDrive.psd1

@{
    RootModule           = 'GitDrive.dll'
    ModuleVersion        = '0.1.0'
    GUID                 = 'a3f7b2c1-4d5e-6f78-9a0b-c1d2e3f4a5b6'
    Author               = 'Yoshifumi Tsuda'
    Copyright            = '(c) 2026 Yoshifumi Tsuda. All rights reserved.'
    Description          = 'Navigate Git branches as a PSDrive. Browse branches with cd/ls, view commit diffs, checkout with Invoke-Item, and analyze branches with PowerShell pipelines.'
    PowerShellVersion    = '7.4'
    CompatiblePSEditions = @('Core')

    CmdletsToExport      = @(
        'New-GitDrive'
        'Set-GitLocation'
    )
    FunctionsToExport    = @()
    AliasesToExport      = @('gcd')
    VariablesToExport    = @()

    FormatsToProcess     = @('GitDrive.Format.ps1xml')

    PrivateData          = @{
        PSData = @{
            Tags       = @('Git', 'Branch', 'PSDrive', 'Provider')
            ProjectUri = 'https://github.com/yotsuda/GitDrive'
            LicenseUri = 'https://github.com/yotsuda/GitDrive/blob/master/LICENSE'
        }
    }
}