UNPKG

hidenv

Version:

Beautiful CLI tool to encrypt and decrypt .env files with AES-256-GCM

57 lines (56 loc) 1.02 kB
{ "name": "hidenv", "version": "1.0.4", "description": "Beautiful CLI tool to encrypt and decrypt .env files with AES-256-GCM", "main": "src/cryptoUtils.js", "bin": { "hidenv": "bin/cli.js" }, "type": "module", "engines": { "node": ">=16.0.0" }, "scripts": { "start": "node bin/cli.js", "dev": "node bin/cli.js", "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [ "env", "environment", "encryption", "cli", "security", "aes", "dotenv", "secrets", "secure", "crypto", "hidenv" ], "author": { "name": "erik444", "email": "erik444@npm.com" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/xErik444x/hidenv.git" }, "bugs": { "url": "https://github.com/xErik444x/hidenv/issues" }, "homepage": "https://github.com/xErik444x/hidenv#readme", "files": [ "bin/", "src/", "README.md", "LICENSE" ], "dependencies": { "chalk": "^5.3.0", "figlet": "^1.6.0", "inquirer": "^9.2.0", "ora": "^7.0.1" } }