{
  "name": "@zincapp/zn-vault-agent",
  "version": "1.22.5",
  "description": "ZnVault Certificate Agent - Real-time certificate and secret distribution",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "zn-vault-agent": "./dist/index.js"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./plugins": {
      "import": "./dist/plugins/index.js",
      "types": "./dist/plugins/index.d.ts"
    }
  },
  "files": [
    "dist/",
    "!dist/**/*.test.js",
    "!dist/**/*.test.js.map",
    "!dist/**/*.test.d.ts",
    "!dist/**/*.test.d.ts.map",
    "!dist/*.cjs",
    "!dist/*.cjs.map",
    "deploy/systemd/zn-vault-agent.service",
    "deploy/logrotate.d/",
    "deploy/scripts/"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "build:bundle": "node scripts/bundle.mjs",
    "dev": "tsx watch src/index.ts",
    "start": "node dist/index.js",
    "start:bundle": "node dist/zn-vault-agent.cjs",
    "lint": "eslint src/",
    "lint:fix": "eslint src/ --fix",
    "typecheck": "tsc --noEmit",
    "pretest": "npm run build",
    "test": "../scripts/sdk-test-run.sh npm run test:all",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:unit": "vitest run",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "test:integration:watch": "vitest --config vitest.integration.config.ts",
    "test:all": "npm run test:unit && npm run test:integration"
  },
  "keywords": [
    "znvault",
    "certificates",
    "ssl",
    "tls",
    "agent"
  ],
  "author": "ZincApp",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vidaldiego/zn-vault-agent.git"
  },
  "bugs": {
    "url": "https://github.com/vidaldiego/zn-vault-agent/issues"
  },
  "homepage": "https://github.com/vidaldiego/zn-vault-agent#readme",
  "dependencies": {
    "chalk": "^5.6.2",
    "commander": "^14.0.2",
    "conf": "^15.0.2",
    "fastify": "^5.7.1",
    "inquirer": "^13.2.1",
    "ora": "^9.1.0",
    "pino": "^10.2.1",
    "semver": "^7.7.3",
    "ws": "^8.19.0"
  },
  "optionalDependencies": {
    "mysql2": "^3.16.1",
    "pg": "^8.17.2"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.2",
    "@types/inquirer": "^9.0.9",
    "@types/node": "^25.0.10",
    "@types/pg": "^8.16.0",
    "@types/semver": "^7.7.1",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^8.53.1",
    "@typescript-eslint/parser": "^8.53.1",
    "@vitest/coverage-v8": "^4.0.17",
    "esbuild": "^0.27.2",
    "eslint": "^9.39.2",
    "pino-pretty": "^13.1.3",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.53.1",
    "vitest": "^4.0.17"
  },
  "engines": {
    "node": ">=18"
  }
}
