Store.psd1
@{ RootModule = 'Store.psm1' ModuleVersion = '0.0.18' CompatiblePSEditions = @( 'Core' ) GUID = 'e446ebd2-111e-4123-88f5-ffdfa3c4f0e2' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2024 PSModule. All rights reserved.' Description = 'A PowerShell module that manages a store of secrets and variables.' PowerShellVersion = '7.0' ProcessorArchitecture = 'None' RequiredModules = @( 'Microsoft.PowerShell.SecretManagement' 'Microsoft.PowerShell.SecretStore' ) RequiredAssemblies = @() ScriptsToProcess = @() TypesToProcess = @() FormatsToProcess = @() NestedModules = @() FunctionsToExport = @( 'Get-StoreConfig' 'Initialize-Store' 'Set-StoreConfig' ) CmdletsToExport = @() VariablesToExport = @() ModuleList = @() FileList = @() PrivateData = @{ PSData = @{ Tags = @( 'Linux' 'MacOS' 'powershell' 'powershell-module' 'PSEdition_Core' 'store' 'Windows' ) LicenseUri = 'https://github.com/PSModule/Store/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/Store' IconUri = 'https://raw.githubusercontent.com/PSModule/Store/main/icon/icon.png' } } } |