Store.psd1

@{
    RootModule            = 'Store.psm1'
    ModuleVersion         = '0.3.2'
    CompatiblePSEditions  = @(
        'Core'
        'Desktop'
    )
    GUID                  = 'e3f19dd5-10be-4549-aff7-09d31210e708'
    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.4'
    ProcessorArchitecture = 'None'
    RequiredModules       = @(
        'Microsoft.PowerShell.SecretManagement'
        'Microsoft.PowerShell.SecretStore'
    )
    RequiredAssemblies    = @()
    ScriptsToProcess      = @()
    TypesToProcess        = @()
    FormatsToProcess      = @()
    NestedModules         = @()
    FunctionsToExport     = @(
        'Get-Store'
        'Remove-Store'
        'Set-Store'
        'Get-StoreConfig'
        'Remove-StoreConfig'
        'Set-StoreConfig'
    )
    CmdletsToExport       = @()
    ModuleList            = @()
    FileList              = 'Store.psm1'
    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'
        }
    }
}