Store.psd1
@{ RootModule = 'Store.psm1' ModuleVersion = '0.1.0' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'f8024c2d-ddb0-4674-89f1-4deeec22c126' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2024 PSModule. All rights reserved.' Description = 'A PowerShell module that manages a store of secrets and variables.' PowerShellVersion = '5.1' 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' 'PSEdition_Desktop' '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' } } } |