{
  "name": "ada-agent",
  "version": "0.16.4",
  "description": "A from-zero terminal coding agent with a Cursor-style routing backend, ~285 skills, MCP connectors, and ask/plan/auto modes",
  "type": "module",
  "license": "MIT",
  "exports": {
    ".": "./src/sdk/index.ts",
    "./sdk": "./src/sdk/index.ts",
    "./server": "./src/server/index.ts",
    "./package.json": "./package.json"
  },
  "author": "Aditya",
  "homepage": "https://github.com/black141312/ada#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/black141312/ada.git"
  },
  "bugs": {
    "url": "https://github.com/black141312/ada/issues"
  },
  "keywords": [
    "coding-agent",
    "ai-agent",
    "llm",
    "cli",
    "terminal",
    "tui",
    "mcp",
    "openai",
    "anthropic",
    "ollama",
    "agentic",
    "developer-tools"
  ],
  "bin": {
    "ada": "bin/ada.mjs",
    "ada-agent": "bin/ada.mjs",
    "ada-server": "bin/ada-server.mjs"
  },
  "files": [
    "bin/",
    "src/",
    "skills/",
    "docs/",
    "bench/",
    "tsconfig.json",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "start": "tsx src/client/cli.ts",
    "server": "tsx src/server/index.ts",
    "typecheck": "tsc --noEmit",
    "sqlite:abi": "node scripts/sqlite-abi.mjs",
    "postinstall": "node scripts/sqlite-abi.mjs || exit 0",
    "typecheck:worker": "tsc -p src/worker/tsconfig.json --noEmit",
    "selfcheck": "tsx src/selfcheck.ts",
    "check:browser": "tsx src/browsercheck.ts",
    "bench:memory": "tsx bench/memory.ts",
    "bench:extraction": "tsx bench/extraction.ts",
    "bench:swebench": "node bench/swebench.mjs",
    "catalog:refresh": "node scripts/refresh-catalog.mjs",
    "release": "node scripts/release.mjs",
    "browser:profile": "tsx src/clone-profile.ts",
    "browser:login": "tsx src/browser-login.ts",
    "browser:bridge": "tsx src/browser-bridge.ts"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.106.0",
    "@huggingface/transformers": "^4.2.0",
    "better-auth": "^1.6.23",
    "better-sqlite3": "^12.11.1",
    "ink": "^7.1.1",
    "ink-text-input": "^6.0.0",
    "openai": "^6.45.0",
    "pg": "^8.22.0",
    "react": "^19.2.8",
    "tsx": "^4.22.4"
  },
  "optionalDependencies": {
    "node-pty": "^1.1.0",
    "sharp": "^0.35.3"
  },
  "//overrides": "Two high-severity advisories reach us only through @huggingface/transformers, and there is no upstream fix to wait for: transformers 4.2.0 is the latest and pins onnxruntime-node 1.24.3 exactly, while even onnxruntime-node 1.27.0 still asks for adm-zip ^0.5.16. sharp is the one that matters — convert_image runs it on arbitrary local files, so the libvips CVEs are reachable. adm-zip is only used by onnxruntime-node to unpack its own bundled binaries, never attacker-controlled input, so that one is hygiene. Drop these once transformers ships ranges that resolve clean.",
  "overrides": {
    "adm-zip": "^0.6.0",
    "sharp": "^0.35.3"
  },
  "devDependencies": {
    "@cloudflare/workers-types": "^4.20260702.1",
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^26.0.1",
    "@types/pg": "^8.20.0",
    "@types/react": "^19.2.17",
    "typescript": "^6.0.3"
  }
}
