UNPKG

cloakx

Version:

Cloakx is a secure, lightweight CLI tool to manage your development secrets locally — no cloud, no hassle. Store, retrieve, and manage secrets across projects with encryption and ease. 🔐 Perfect for solo devs, indie hackers, and teams who value speed, si

11 lines (10 loc) 542 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.sessionPath = exports.vaultPath = void 0; const path_1 = __importDefault(require("path")); const os_1 = __importDefault(require("os")); exports.vaultPath = path_1.default.join(os_1.default.homedir(), '.cloak', 'vault.json'); exports.sessionPath = path_1.default.join(os_1.default.homedir(), '.cloak', 'session.json');