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
52 lines (51 loc) • 1.44 kB
JSON
{
"name": "cloakx",
"version": "1.0.2",
"description": "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, simplicity, and security.",
"main": "index.js",
"bin": {
"cloakx": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/pravinxdev/cloak.git"
},
"homepage": "https://github.com/pravinxdev/cloak#readme",
"keywords": [
"cli-tool",
"secure-vault",
"local-encryption",
"password-manager",
"secret-storage",
"encrypted-storage",
"credential-manager",
"token-manager",
"secure-cli",
"data-encryption"
],
"author": "Pravin",
"license": "MIT",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"inquirer": "^12.8.2",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@types/inquirer": "^9.0.8",
"@types/node": "^24.1.0",
"@types/readline-sync": "^1.4.8",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}