{
  "name": "hide",
  "version": "7.0.2",
  "description": "Open source, AES-256 bit encrypted password manager with all encrypted passwords stored locally on your machine.",
  "author": "Lance Whatley <whatl3y@gmail.com> (https://lance.to)",
  "license": "MIT",
  "type": "module",
  "engines": {
    "node": ">=22.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/whatl3y/hide.git"
  },
  "keywords": [
    "password",
    "password-manager",
    "encryption",
    "aes-256",
    "cli",
    "security"
  ],
  "files": [
    "dist"
  ],
  "bin": {
    "hide": "dist/index.js"
  },
  "scripts": {
    "build": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json && node -e \"fs.chmodSync('dist/index.js',0o755)\"",
    "pretest": "tsc -p tsconfig.json --noEmit",
    "test": "node --test \"src/**/*.spec.ts\"",
    "prepare": "npm run build",
    "prepublishOnly": "npm test"
  },
  "dependencies": {
    "columnify": "^1.6.0",
    "csv-parse": "^7.0.1",
    "minimist": "^1.2.8"
  },
  "devDependencies": {
    "@types/columnify": "^1.5.4",
    "@types/minimist": "^1.2.5",
    "@types/node": "^26.1.0",
    "typescript": "^6.0.3"
  }
}
