Store.psd1
@{ RootModule = 'Store.psm1' ModuleVersion = '0.0.21' CompatiblePSEditions = @( 'Core' ) GUID = '646fea4d-4314-4aed-8389-edf330efe54f' 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' } } } |