{
  "name": "@papavault/cli",
  "version": "1.2.2",
  "description": "CLI tool for Papa Vault Secret Manager",
  "main": "dist/src/index.js",
  "bin": {
    "papavault": "dist/src/index.js"
  },
  "scripts": {
    "build": "tsc && chmod +x dist/src/index.js",
    "start": "node dist/src/index.js",
    "dev": "ts-node src/index.ts",
    "test": "jest",
    "lint": "eslint . --ext .ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "prepare": "npm run build",
    "prepublishOnly": "npm run lint && npm test",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags"
  },
  "keywords": [
    "cli",
    "secrets",
    "papavault",
    "secret-manager",
    "environment-variables"
  ],
  "author": "Papa Vault",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/papavault/cli.git"
  },
  "bugs": {
    "url": "https://github.com/papavault/cli/issues"
  },
  "homepage": "https://github.com/papavault/cli#readme",
  "files": [
    "dist/**/*",
    "!dist/**/*.test.*"
  ],
  "dependencies": {
    "axios": "^1.6.2",
    "chalk": "^4.1.2",
    "commander": "^11.1.0",
    "conf": "^10.2.0",
    "dotenv": "^16.3.1",
    "inquirer": "^8.2.6",
    "ora": "^5.4.1"
  },
  "devDependencies": {
    "@types/inquirer": "^8.2.6",
    "@types/jest": "^29.5.10",
    "@types/node": "^20.10.0",
    "@typescript-eslint/eslint-plugin": "^6.12.0",
    "@typescript-eslint/parser": "^6.12.0",
    "eslint": "^8.54.0",
    "jest": "^29.7.0",
    "prettier": "^3.1.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.3.2"
  }
}
