{
  "name": "@panguard-ai/panguard",
  "version": "1.8.4",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/panguard-ai/panguard-ai"
  },
  "homepage": "https://panguard.ai",
  "type": "module",
  "description": "Panguard AI - Unified security CLI",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "panguard": "./bin/panguard.cjs",
    "pga": "./bin/panguard.cjs"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "bin",
    "CHANGELOG.md",
    "package.json",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@sentry/node": "^8.0.0",
    "commander": "^12.0.0",
    "js-yaml": "^4.1.0",
    "pdfkit": "^0.15.0",
    "zod": "^3.24.0",
    "@panguard-ai/atr": "1.8.4",
    "@panguard-ai/core": "1.8.4",
    "@panguard-ai/panguard-chat": "1.8.4",
    "@panguard-ai/panguard-guard": "1.8.4",
    "@panguard-ai/panguard-mcp": "1.8.4",
    "@panguard-ai/panguard-mcp-proxy": "1.8.4",
    "@panguard-ai/panguard-scan": "1.8.4",
    "@panguard-ai/panguard-skill-auditor": "1.8.4",
    "@panguard-ai/scan-core": "1.8.4",
    "@panguard-ai/security-hardening": "1.8.4"
  },
  "optionalDependencies": {
    "agent-threat-rules": "^3.5.6",
    "@panguard-ai/panguard-trap": "1.8.4"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^22.14.0",
    "@types/pdfkit": "^0.13.0",
    "typescript": "~5.7.3"
  },
  "scripts": {
    "build": "tsc --build && cp ../../CHANGELOG.md ./CHANGELOG.md 2>/dev/null || true",
    "clean": "rm -rf dist tsconfig.tsbuildinfo",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "dev": "tsc --build --watch",
    "postinstall": "node -e \"console.log('\\n  Panguard AI v' + require('./package.json').version + ' installed.\\n\\n  Quick start:\\n    pga              Open interactive menu\\n    pga up           Start protection + dashboard\\n    pga scan         Scan your skills\\n    pga audit <dir>  Audit a skill before installing\\n\\n  First time? Just run: pga\\n')\""
  }
}