{
  "name": "shroud-privacy",
  "version": "2.5.7",
  "description": "Privacy and infrastructure protection for AI agents — detects sensitive data (PII, network topology, credentials, OT/SCADA) and replaces with deterministic fakes before anything reaches the LLM.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/",
    "clients/",
    "app-server.mjs",
    "scripts/shroud-stats.mjs",
    "openclaw.plugin.json",
    "LICENSE",
    "NOTICE"
  ],
  "bin": {
    "shroud-stats": "scripts/shroud-stats.mjs"
  },
  "scripts": {
    "build": "tsc",
    "test": "npm run test:unit && npm run test:integration",
    "test:unit": "vitest run",
    "test:integration": "node tests/harness/run.mjs",
    "test:docker": "bash compat/run-e2e.sh latest",
    "test:all": "npm run test:unit && npm run test:integration && npm run test:docker",
    "test:watch": "vitest",
    "lint": "tsc --noEmit",
    "prepublishOnly": "npm run lint && npm run test:unit && npm run test:integration && npm run build"
  },
  "keywords": [
    "privacy",
    "pii",
    "obfuscation",
    "llm",
    "redaction",
    "ai-agent",
    "openclaw",
    "openclaw-plugin",
    "app-protocol"
  ],
  "author": "wkeything",
  "license": "Apache-2.0",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "typescript": "^5.4",
    "vitest": "^2.0",
    "@types/node": "^20"
  },
  "openclaw": {
    "extensions": [
      "./dist/index.js"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wkeything/shroud.git"
  },
  "homepage": "https://github.com/wkeything/shroud#readme",
  "bugs": {
    "url": "https://github.com/wkeything/shroud/issues"
  }
}
