NoGit.psd1

# Copyright: (c) 2025, Kevin Blumenfeld <kevin.blumenfeld@gmail.com>
# MIT License (see LICENSE or https://opensource.org/licenses/MIT)

@{
    RootModule        = 'NoGit.psm1'
    ModuleVersion     = '0.1.311'
    GUID              = '8e95c71c-83be-40bd-8633-2c9b080f0919'
    Author            = 'Kevin Blumenfeld'
    Copyright         = 'Copyright (c) 2025 by Kevin Blumenfeld, licensed under MIT.'
    Description       = "Recursively downloads all files and folders from a GitHub repository, preserving the repository’s folder structure in the local destination, using the GitHub REST API.`nSee https://github.com/kevinblumenfeld/NoGit for more info"
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-NoGitHubRepoContents','Get-NoGitHubRepoTreeContents')
    PrivateData       = @{
        PSData = @{
            Tags       = @(
                "GitHub",
                "NoGit",
                "RestAPI"
            )
            ProjectUri = 'https://github.com/kevinblumenfeld/NoGit'
        }
    }
}