{
  "name": "mcp-codebase-index",
  "version": "0.4.0",
  "description": "MCP server for semantic code search using Tree-sitter, embeddings, and Qdrant vector database",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "mcp-codebase-index": "dist/index.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsx src/index.ts",
    "start": "node dist/index.js",
    "test": "vitest",
    "test:coverage": "vitest --coverage",
    "test:parser": "tsx scripts/test-parser.ts",
    "test:storage": "tsx scripts/test-storage.ts",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "typecheck": "tsc --noEmit",
    "changeset": "changeset",
    "version": "changeset version",
    "release": "npm run build && changeset publish",
    "prepublishOnly": "npm run build && npm run typecheck && npm test"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "semantic-search",
    "code-search",
    "tree-sitter",
    "embeddings",
    "qdrant",
    "vector-database",
    "claude",
    "ai",
    "code-indexing",
    "vector-search",
    "codebase-search"
  ],
  "author": "MCP Codebase Index Contributors",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/itseasy21/mcp-codebase-index.git"
  },
  "bugs": {
    "url": "https://github.com/itseasy21/mcp-codebase-index/issues"
  },
  "homepage": "https://github.com/itseasy21/mcp-codebase-index#readme",
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "USAGE.md",
    "API.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@google/generative-ai": "^0.21.0",
    "@modelcontextprotocol/sdk": "^1.0.4",
    "@qdrant/js-client-rest": "^1.12.0",
    "chokidar": "^4.0.1",
    "dotenv": "^16.4.7",
    "openai": "^4.77.0",
    "tree-sitter": "^0.21.1",
    "tree-sitter-c": "^0.21.4",
    "tree-sitter-c-sharp": "^0.21.3",
    "tree-sitter-cpp": "^0.21.0",
    "tree-sitter-go": "^0.21.2",
    "tree-sitter-java": "^0.21.0",
    "tree-sitter-javascript": "^0.21.0",
    "tree-sitter-php": "^0.21.1",
    "tree-sitter-python": "^0.21.0",
    "tree-sitter-ruby": "^0.21.0",
    "tree-sitter-rust": "^0.21.0",
    "tree-sitter-typescript": "^0.21.0",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@changesets/cli": "^2.29.7",
    "@types/node": "^22.10.1",
    "@typescript-eslint/eslint-plugin": "^8.16.0",
    "@typescript-eslint/parser": "^8.16.0",
    "eslint": "^9.15.0",
    "prettier": "^3.3.3",
    "tsx": "^4.19.2",
    "typescript": "^5.7.2",
    "vitest": "^2.1.5"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
