cdup.psd1
|
@{ RootModule = 'cdup.psm1' ModuleVersion = '0.1.0' GUID = '8304f370-3925-4d0c-a67d-09e520bead1d' Author = 'amanzainal' CompanyName = 'Community' Copyright = '(c) 2024 amanzainal. All rights reserved.' Description = 'Fast ancestor navigation for PowerShell with level, name, git-root, and filesystem-root jumps.' PowerShellVersion = '5.1' CompatiblePSEditions = @('Desktop', 'Core') FunctionsToExport = @('Set-LocationUp') CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @('cdup', 'up') PrivateData = @{ PSData = @{ Tags = @('powershell', 'navigation', 'shell', 'cli', 'productivity') LicenseUri = 'https://github.com/amanzainal/cdup/blob/main/LICENSE' ProjectUri = 'https://github.com/amanzainal/cdup' ReleaseNotes = 'First packaged release with module packaging, tests, CI, and publish automation.' } } } |