Get-NozGraph, Find-NozNote, Measure-NozGarden, Set-NozNoteStatus, Get-NozOrphans — graph edges, Meilisearch search, garden stats, frontmatter status patch, orphan detection from inbound link analysis.
34 lines
918 B
PowerShell
34 lines
918 B
PowerShell
@{
|
|
ModuleVersion = '0.1.0'
|
|
GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'
|
|
Author = 'Bruno Deanoz'
|
|
Description = 'PowerShell module for noz — a self-hosted digital garden'
|
|
PowerShellVersion = '7.2'
|
|
RootModule = 'Noz.PowerShell.dll'
|
|
|
|
CmdletsToExport = @(
|
|
'Get-NozNote',
|
|
'Get-NozNoteContent',
|
|
'Set-NozNote',
|
|
'New-NozNote',
|
|
'Remove-NozNote',
|
|
'Get-NozGraph',
|
|
'Find-NozNote',
|
|
'Measure-NozGarden',
|
|
'Set-NozNoteStatus',
|
|
'Get-NozOrphans',
|
|
'Rename-NozNote',
|
|
'Get-NozTemplate',
|
|
'Add-NozLink'
|
|
)
|
|
|
|
FunctionsToExport = @()
|
|
AliasesToExport = @()
|
|
|
|
PrivateData = @{
|
|
PSData = @{
|
|
Tags = @('noz', 'digital-garden', 'notes', 'markdown')
|
|
ProjectUri = 'https://git.kryptomrx.de/krypto/noz-cli'
|
|
}
|
|
}
|
|
}
|