JournalCli.psd1

@{
    RootModule = 'JournalCli.dll'
    ModuleVersion = '1.6.1'
    CompatiblePSEditions = 'Core'
    GUID = 'c45932e7-867b-4894-9226-cf278bdb4e3e'
    Author = 'Nick Spreitzer'
    CompanyName = 'RAWR! Productions'
    Copyright = '(c) 2021 Nick Spreitzer'
    Description = 'Index your markdown-based journal with yaml front matter!'
    PowerShellVersion = '7.1.0'
    FunctionsToExport = @()
    CmdletsToExport = 'Add-JournalEntryContent', 'Backup-Journal', 'ConvertTo-Yaml', 
                   'Get-JournalDefaultLocation', 'Get-JournalEntriesByTag', 
                   'Get-JournalFiles', 'Get-JournalIndex', 'Get-JournalReadmeEntries', 
                   'Get-RecentJournalEntries', 'New-CompiledJournalEntry', 
                   'New-JournalEntry', 'Open-JournalBackupLocation', 
                   'Open-JournalCliLogsDirectory', 'Open-Journal', 'Open-JournalEntry', 
                   'Open-RandomJournalEntry', 'Rename-JournalTag', 
                   'Save-JournalSnapshot', 'Set-JournalDefaultLocation', 
                   'Suspend-JournalCliUpdateChecks'
    VariablesToExport = '*'
    AliasesToExport = 'aje', 'bj', 'cty', 'Get-DefaultJournalLocation', 'gjt', 'gji', 
                   'Get-ReadmeEntries', 'nj', 'Open-BackupLocation', 'oj', 'oje', 'orj', 'sjs', 
                   'Set-DefaultJournalLocation'
    PrivateData = @{
        PSData = @{
            Tags = 'notebook','journal','markdown'
            LicenseUri = 'https://github.com/refactorsaurusrex/journal-cli/blob/master/LICENSE'
            ProjectUri = 'https://github.com/refactorsaurusrex/journal-cli'
        } 
     } 
    HelpInfoURI = 'https://github.com/refactorsaurusrex/journal-cli/wiki'
}