CopyGitHubRepo.psd1

@{
    RootModule = 'CopyGitHubRepo.psm1'
    ModuleVersion = '0.1.1'
    GUID = 'c428210d-c7a4-49db-81d1-830606e16fa6'
    Author = 'infoconex'
    CompanyName = 'infoconex'
    Copyright = '(c) 2026 infoconex. Licensed under the MIT License.'
    Description = 'PowerShell module for safely copying and migrating GitHub repositories with clean Snapshot or history-preserving FullHistory modes.'
    PowerShellVersion = '7.4'
    CompatiblePSEditions = @('Core')
    FormatsToProcess = @('CopyGitHubRepo.format.ps1xml')
    FunctionsToExport = @(
        'Copy-GitHubRepository'
        'Get-GitHubRepository'
        'Start-CopyGitHubRepositoryWizard'
        'Test-GitHubRepositoryMigration'
    )
    CmdletsToExport = @()
    VariablesToExport = @()
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = @(
                'GitHub'
                'Git'
                'Repository'
                'Copy'
                'Migration'
                'Automation'
                'DevOps'
                'PowerShell'
                'PSEdition_Core'
                'Windows'
                'Linux'
                'MacOS'
            )
            LicenseUri = 'https://github.com/infoconex/copy-github-repo/blob/main/LICENSE'
            ProjectUri = 'https://infoconex.github.io/copy-github-repo/'
            IconUri = 'https://infoconex.github.io/copy-github-repo/assets/images/gallery-icon.png'
            ReleaseNotes = "### Changed`n`n- Improved PowerShell Gallery discovery metadata with Windows, Linux, macOS, PowerShell Core, Automation, and DevOps tags plus a more search-friendly package description.`n- Pointed the Gallery project and icon metadata at the GitHub Pages documentation site and added an exact 85x85 Gallery icon.`n- Added PowerShell Gallery version/download, project-quality, PowerShell-version, and platform badges to the README and improved the documentation site's SEO description.`n- Updated Gallery packaging so each staged release automatically receives version-specific ``ReleaseNotes`` from its matching ``CHANGELOG.md`` release section.`n- Made current-version support and GitHub-host documentation release-line based so future patch releases do not require unnecessary version-number edits."
        }
    }
}