Context.psd1
@{ RootModule = 'Context.psm1' ModuleVersion = '8.0.0' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'ed411e7f-85f0-49e5-83a4-285328fb94c9' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2025 PSModule. All rights reserved.' Description = 'A PowerShell module that manages contexts with secrets and variables.' PowerShellVersion = '5.1' ProcessorArchitecture = 'None' RequiredModules = @( @{ ModuleName = 'Sodium' RequiredVersion = '2.2.0' } ) TypesToProcess = @() FormatsToProcess = @( 'formats/ContextVault.Format.ps1xml' ) FunctionsToExport = @( 'Get-Context' 'Get-ContextInfo' 'Get-ContextVault' 'Remove-Context' 'Remove-ContextVault' 'Rename-Context' 'Reset-ContextVault' 'Set-Context' 'Set-ContextVault' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @( 'New-Context' 'Update-Context' ) ModuleList = @() FileList = @( 'Context.psm1' 'formats/ContextVault.Format.ps1xml' ) PrivateData = @{ PSData = @{ Tags = @( 'context' 'Linux' 'MacOS' 'powershell' 'powershell-module' 'PSEdition_Core' 'PSEdition_Desktop' 'Windows' ) LicenseUri = 'https://github.com/PSModule/Context/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/Context' IconUri = 'https://raw.githubusercontent.com/PSModule/Context/main/icon/icon.png' Prerelease = 'copilotfix772001' } } } |