safestore
Version:
A lightweight and secure CLI tool for encrypting and decrypting files using AES-256 encryption
47 lines (46 loc) • 1.23 kB
JSON
{
"name": "safestore",
"version": "1.0.0-beta.1",
"description": "A lightweight and secure CLI tool for encrypting and decrypting files using AES-256 encryption",
"main": "file-encryption-cli.js",
"bin": {
"safestore2": "file-encryption-cli.js",
"lockbox": "file-encryption-cli.js",
"safestore": "file-encryption-cli.js",
"safe": "file-encryption-cli.js"
},
"scripts": {
"encrypt": "node file-encryption-cli.js encrypt",
"decrypt": "node file-encryption-cli.js decrypt",
"safe:encrypt": "npx safestore encrypt .env .env.safe",
"safe:decrypt": "npx safestore decrypt .env.safe .env"
},
"keywords": [
"encryption",
"decryption",
"security",
"cli",
"env",
"environment-variables",
"file-encryption",
"aes-256",
"crypto"
],
"author": {
"name": "Shaswat Raj",
"email": "sh20raj@gmail.com",
"url": "https://github.com/sh20raj"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sh20raj/safestore.git"
},
"bugs": {
"url": "https://github.com/sh20raj/safestore/issues"
},
"homepage": "https://github.com/sh20raj/safestore#readme",
"engines": {
"node": ">=12.0.0"
}
}