()
| 11 | import type { SecureStorage, SecureStorageData } from './types.js' |
| 12 | |
| 13 | function getStoragePath(): { storageDir: string; storagePath: string } { |
| 14 | const storageDir = getClaudeConfigHomeDir() |
| 15 | const storageFileName = '.credentials.json' |
| 16 | return { storageDir, storagePath: join(storageDir, storageFileName) } |
| 17 | } |
| 18 | |
| 19 | export const plainTextStorage = { |
| 20 | name: 'plaintext', |