{
  "name": "adrflow",
  "version": "0.1.7",
  "description": "Automatic Architecture Decision Records for AI-assisted development. MCP server that proactively captures architectural decisions during coding sessions.",
  "author": "Memvid Team <hello@memvid.com>",
  "license": "Apache-2.0",
  "type": "module",
  "engines": {
    "node": ">=20.0.0"
  },
  "bin": {
    "adrflow": "./dist/bin/cli.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./server": {
      "import": "./dist/mcp/server.js",
      "types": "./dist/mcp/server.d.ts"
    },
    "./types": {
      "import": "./dist/core/types.js",
      "types": "./dist/core/types.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/bin/cli.js serve",
    "test": "node --test 'tests/**/*.test.js'",
    "lint": "eslint src --ext .ts",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build && npm test"
  },
  "dependencies": {
    "@memvid/sdk": "^2.0.120",
    "@modelcontextprotocol/sdk": "^1.24.3",
    "zod": "^3.24.0"
  },
  "devDependencies": {
    "@types/node": "^24.10.2",
    "typescript": "^5.9.3"
  },
  "keywords": [
    "adr",
    "architecture-decision-record",
    "architecture",
    "decision",
    "records",
    "documentation",
    "ai",
    "mcp",
    "model-context-protocol",
    "claude",
    "claude-code",
    "cursor",
    "ai-assistant",
    "developer-tools",
    "memvid",
    "madr"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/memvid/adrflow.git"
  },
  "bugs": {
    "url": "https://github.com/memvid/adrflow/issues"
  },
  "homepage": "https://github.com/memvid/adrflow#readme"
}
