UNPKG

fast-envcrypt

Version:

Secure AES-256 .env file encryption CLI tool with argon2/scrypt support

64 lines (63 loc) 1.38 kB
{ "name": "fast-envcrypt", "version": "1.0.3", "author": "Asliddin Muminov <asliddin4466@gmail.com>", "private": false, "description": "Secure AES-256 .env file encryption CLI tool with argon2/scrypt support", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "dev": "tsx bin/envcrypt.ts", "start": "node dist/bin/envcrypt.js", "test": "node test/run.js", "clean": "rimraf dist", "prebuild": "npm run clean", "watch": "tsc --watch", "prepublishOnly": "npm run build" }, "bin": { "envcrypt": "dist/bin/envcrypt.js" }, "type": "module", "keywords": [ "env", "encrypt", "aes", "cli", "dotenv", "security", "argon2", "scrypt", "crypto", "typescript" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Aliddin44/envcrypt.git" }, "bugs": { "url": "https://github.com/Aliddin44/envcrypt/issues" }, "homepage": "https://github.com/Aliddin44/envcrypt#readme", "engines": { "node": ">=16.0.0" }, "dependencies": { "argon2": "^0.30.1", "chalk": "^5.4.1", "commander": "^11.0.0" }, "devDependencies": { "@types/node": "^24.0.4", "typescript": "^5.8.3", "tsx": "^4.0.0", "rimraf": "^5.0.0" } }