{
  "name": "warden-ai",
  "version": "0.1.6",
  "description": "The structurally-verified context layer for AI coding agents. Warden sits between your coding agent and its tools, prunes tool output to what the current task needs, and verifies — with real evals — that nothing got worse.",
  "type": "module",
  "license": "SEE LICENSE IN LICENSE",
  "author": "Rynaldo Stoltz",
  "repository": {
    "type": "git",
    "url": "https://github.com/rynald0cst0ltziam/Warden-AI.git"
  },
  "homepage": "https://github.com/rynald0cst0ltziam/Warden-AI",
  "bugs": {
    "url": "https://github.com/rynald0cst0ltziam/Warden-AI/issues"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "ai",
    "coding-agent",
    "context",
    "token-optimization",
    "eval-gate",
    "cursor",
    "claude-code",
    "codex",
    "windsurf"
  ],
  "bin": {
    "warden": "bin/warden.js"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "bin",
    "docs/assets/warden-banner.png",
    "README.md",
    "LICENSE",
    "TRADEMARK.md"
  ],
  "engines": {
    "node": ">=22.5.0"
  },
  "scripts": {
    "build": "tsup && tsc --emitDeclarationOnly --outDir dist",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "warden": "tsx src/cli/index.ts",
    "serve": "tsx src/cli/index.ts serve",
    "smoke": "tsx src/cli/index.ts status",
    "test": "vitest run",
    "test:watch": "vitest",
    "prepublishOnly": "npm run build",
    "postinstall": "node bin/postinstall.cjs"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "1.29.0",
    "chalk": "5.6.2",
    "commander": "15.0.0",
    "tree-sitter-wasms": "^0.1.13",
    "web-tree-sitter": "^0.22.6",
    "zod": "4.4.3"
  },
  "devDependencies": {
    "@types/node": "26.1.1",
    "prettier": "3.9.5",
    "puppeteer": "^25.5.0",
    "tsup": "8.5.1",
    "tsx": "4.23.1",
    "typescript": "7.0.2",
    "vitest": "^4.1.10"
  }
}
