{
    "name": "@techdebtgpt/archdoc-generator",
    "version": "0.4.6",
    "description": "AI-powered architecture documentation generator with RAG, hybrid retrieval (semantic + structural), and multi-agent workflows using LangChain",
    "main": "dist/src/index.js",
    "types": "dist/src/index.d.ts",
    "bin": {
        "archdoc": "./dist/cli/index.js",
        "archdoc-mcp-server": "./dist/src/mcp-server/index.js"
    },
    "scripts": {
        "build": "tsc -p tsconfig.build.json",
        "build:watch": "tsc -p tsconfig.build.json --watch",
        "test": "jest",
        "test:watch": "jest --watch",
        "test:cov": "jest --coverage",
        "test:integration": "jest --testPathPattern=integration",
        "lint": "eslint \"{src,cli,tests}/**/*.ts\"",
        "lint:fix": "eslint \"{src,cli,tests}/**/*.ts\" --fix",
        "format": "prettier --write \"**/*.{ts,json,md}\"",
        "format:check": "prettier --check \"**/*.{ts,json,md}\"",
        "prepublishOnly": "npm run build && npm run lint && npm test",
        "prepack": "npm run build",
        "postpack": "echo 'Package created successfully'",
        "cli:dev": "ts-node cli/index.ts",
        "mcp:dev": "ts-node src/mcp-server/index.ts",
        "mcp:build": "npm run build && node dist/src/mcp-server/index.js",
        "mcp:setup": "ts-node cli/commands/setup-mcp.command.ts",
        "example:basic": "ts-node examples/basic-usage.ts",
        "example:custom": "ts-node examples/custom-agent.ts",
        "prepublish:check": "node scripts/pre-publish-check.js"
    },
    "keywords": [
        "documentation",
        "documentation-generator",
        "architecture",
        "architecture-documentation",
        "langchain",
        "ai",
        "llm",
        "claude",
        "gpt-4",
        "gemini",
        "code-analysis",
        "agentic",
        "multi-agent",
        "multi-language",
        "language-agnostic",
        "rag",
        "vector-search",
        "semantic-search",
        "embeddings",
        "hybrid-retrieval",
        "dependency-graph",
        "tfidf",
        "typescript",
        "javascript",
        "python",
        "java",
        "go",
        "rust",
        "technical-documentation",
        "automated-documentation",
        "code-documentation",
        "developer-tools",
        "ci-cd",
        "devops"
    ],
    "author": "TechDebtGPT Team",
    "license": "Apache-2.0",
    "repository": {
        "type": "git",
        "url": "https://github.com/techdebtgpt/architecture-doc-generator.git"
    },
    "bugs": {
        "url": "https://github.com/techdebtgpt/architecture-doc-generator/issues"
    },
    "homepage": "https://techdebtgpt.com",
    "engines": {
        "node": ">=18.0.0"
    },
    "dependencies": {
        "@anthropic-ai/sdk": "^0.68.0",
        "@langchain/anthropic": "^1.3.26",
        "@langchain/classic": "^1.0.30",
        "@langchain/core": "^1.1.39",
        "@langchain/google-genai": "^2.1.26",
        "@langchain/langgraph": "^1.2.8",
        "@langchain/openai": "^1.4.4",
        "@modelcontextprotocol/sdk": "^1.21.0",
        "chalk": "^4.1.2",
        "commander": "^12.1.0",
        "fast-glob": "^3.3.2",
        "ignore": "^5.3.2",
        "inquirer": "^8.2.6",
        "js-tiktoken": "^1.0.12",
        "langchain": "^1.3.1",
        "ora": "^5.4.1",
        "pino": "^9.5.0",
        "pino-pretty": "^11.3.0",
        "yaml": "^2.3.4",
        "zod": "^3.22.0"
    },
    "devDependencies": {
        "@types/inquirer": "^9.0.7",
        "@types/jest": "^29.5.14",
        "@types/node": "^22.19.0",
        "@typescript-eslint/eslint-plugin": "^8.46.2",
        "@typescript-eslint/parser": "^8.46.2",
        "eslint": "^8.57.1",
        "eslint-config-prettier": "^9.1.0",
        "eslint-plugin-prettier": "^5.1.0",
        "jest": "^29.7.0",
        "prettier": "^3.1.1",
        "ts-jest": "^29.1.1",
        "ts-node": "^10.9.2",
        "typescript": "^5.3.3"
    },
    "peerDependencies": {
        "typescript": ">=5.0.0"
    },
    "peerDependenciesMeta": {
        "typescript": {
            "optional": true
        }
    },
    "files": [
        "dist",
        "README.md",
        "LICENSE"
    ],
    "publishConfig": {
        "access": "public"
    }
}
