Jax.psd1
|
@{ RootModule = 'Jax.psm1' ModuleVersion = '0.1.14' GUID = '1ea40670-b2f8-4daa-bc38-724f570ee4d9' Author = 'Sergey Novikov <sergey@novik.fr>' Copyright = 'Copyright 2026 Sergey Novikov' Description = 'Repository-independent PowerShell task and environment runner.' PowerShellVersion = '7.2' RequiredModules = @( @{ ModuleName = 'powershell-yaml' RequiredVersion = '0.4.12' } ) FunctionsToExport = @( 'Get-JaxUpdateStatus' 'Install-JaxShellIntegration' 'Invoke-Jax' 'Invoke-JaxShortcut' 'Register-JaxCompletion' ) AliasesToExport = @('jax', 'jx', 'jxs') CmdletsToExport = @() VariablesToExport = @() PrivateData = @{ PSData = @{ Tags = @('automation', 'cli', 'powershell', 'psake', 'tasks') ProjectUri = 'https://github.com/serrnovik/jax' LicenseUri = 'https://github.com/serrnovik/jax/blob/main/LICENSE' ReleaseNotes = 'Installs jax, jx, and jxs as executable PATH shims for zsh and bash, replacing the sourced wrapper functions so the commands also work in non-interactive, CI, and coding-agent shells. Adds a non-blocking, once-per-shell-session hint when a newer Jax is published. Fixes -only selecting both a scenario entity and the identically keyed discovered task, which ran that task twice.' } } } |