show-syntax.psd1

@{
    RootModule        = 'show-syntax.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'a7b3f2e1-d4c0-4a8f-b6e9-2c5d7f1a3e8b'
    Author            = 'baldator'
    Copyright         = '(c) baldator. All rights reserved.'
    Description       = 'A PowerShell module that displays file contents with ANSI syntax highlighting, inspired by the Rust bat tool.'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Show-Syntax')
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @('syntax', 'highlighting', 'bat', 'ansi', 'terminal', 'color', 'cli')
            LicenseUri   = 'https://github.com/baldator/show-syntax/blob/main/LICENSE'
            ProjectUri   = 'https://github.com/baldator/show-syntax'
            ReleaseNotes = 'Initial release: core syntax highlighting for ps1, json, xml, md, py, js, yaml, sh, css, html, csv, log.'
        }
    }
}