{
  "name": "ssh-agent-secrets",
  "version": "0.4.2",
  "description": "Encrypt and decrypt secrets using an SSH agent",
  "keywords": [
    "ssh",
    "ssh-agent",
    "encryption",
    "ssh-key",
    "cryptography",
    "cli"
  ],
  "homepage": "https://github.com/ddebin/ssh-agent-secrets",
  "bugs": {
    "url": "https://github.com/ddebin/ssh-agent-secrets/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ddebin/ssh-agent-secrets.git"
  },
  "license": "MIT",
  "author": "Damien Debin <damien.debin@gmail.com>",
  "type": "module",
  "main": "dist/src/lib/index.js",
  "types": "dist/src/lib/index.d.ts",
  "bin": {
    "ssh-crypt": "dist/src/cli.js"
  },
  "files": [
    "dist/src/**/*"
  ],
  "scripts": {
    "build": "npm run clean && tsc -b",
    "clean": "del-cli ./dist/*",
    "coverage": "npm run build && c8 --100 -- mocha --reporter mocha-junit-reporter 'dist/test/**/*.js'",
    "eslint:check": "eslint .",
    "eslint:fix": "eslint . --fix",
    "fix": "npm run eslint:fix && npm run prettier:fix",
    "lint": "npm run typecheck && npm run eslint:check && npm run prettier:check",
    "prepublishOnly": "npm run build && npm run lint",
    "prettier:check": "prettier --check . --config .prettierrc",
    "prettier:fix": "prettier --write . --config .prettierrc",
    "test": "mocha 'test/**/*.ts'",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@commander-js/extra-typings": "^13 || ^14",
    "commander": "^13 || ^14"
  },
  "devDependencies": {
    "@eslint/js": "^10",
    "@tsconfig/node-ts": "^23",
    "@tsconfig/node18": "^18",
    "@types/chai": "^5",
    "@types/chai-as-promised": "^8",
    "@types/mocha": "^10",
    "@types/node": "^18",
    "c8": "^11",
    "chai": "^6",
    "chai-as-promised": "^8",
    "del-cli": "^6",
    "eslint": "^10",
    "eslint-config-prettier": "^10",
    "globals": "^17",
    "mocha": "^11",
    "mocha-junit-reporter": "^2",
    "prettier": "^3",
    "prettier-plugin-packagejson": "^3",
    "ts-node": "^10",
    "tsx": "^4",
    "typescript": "^6",
    "typescript-eslint": "^8"
  }
}
