/** * Default configuration values. */ import type { VaultConfig } from "../types.js"; export const SETTINGS_KEY = "pi-credential-vault"; export const DEFAULT_CONFIG: VaultConfig = { backend: "age", managedProviders: "all", excludeProviders: [], age: {}, keychain: {}, };