Snippy.psd1

@{
    ModuleVersion = '0.3.1'
    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-Gists', 'Get-SnippetChanges', 
                   'Get-SnippetLanguages', 'Get-SnippetPublicUrl', 'Get-Snippets', 
                   'Get-SnippetTags', 'Get-SnippySettings', 'New-Snippet', 
                   'New-SnippetCustomWorkspace', 'New-SnippetStandardWorkspace', 
                   'Open-SnippetWorkspace', 'Publish-Snippet', 'Set-SnippySettings', 
                   'Sync-SnippetChanges', 'Update-SnippetWorkspaces'
    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'
}