Snippy.psd1

@{
    ModuleVersion = '0.2.0'
    CompatiblePSEditions = 'Core'
    GUID = 'e901963b-8083-42c2-829c-c1ed650383a6'
    Author = 'Nick Spreitzer'
    CompanyName = 'RAWR! Productions'
    Copyright = '(c) 2020 Nick Spreitzer'
    Description = 'A low-key, cli-oriented code snippet manager'
    PowerShellVersion = '6.0'
    NestedModules = @('.\Snippy.dll')
    FunctionsToExport = @()
    CmdletsToExport = 'Edit-SnippyFileAssociations', 'Get-SnippetLanguages', 
                   'Get-SnippetPublicUrl', 'Get-Snippets', 'Get-SnippetTags', 
                   'Get-SnippySettings', 'New-Snippet', 'Open-SnippetWorkspace', 
                   'Publish-Snippet', 'Set-SnippetCustomWorkspace', 
                   'Set-SnippetStandardWorkspace', 'Set-SnippySettings'
    VariablesToExport = '*'
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = 'snippets-manager','powershell','vscode'
            LicenseUri = 'https://github.com/refactorsaurusrex/snippy/blob/master/LICENSE'
            ProjectUri = 'https://github.com/refactorsaurusrex/snippy'
        } 
     } 
    HelpInfoURI = 'https://github.com/refactorsaurusrex/snippy'
}