{
  "name": "@easbot/codebase",
  "version": "0.3.10",
  "description": "Code Knowledge Graph SDK for EASBot - Property Graph model for code indexing and querying with Tree-sitter parsing, FTS hybrid search, and incremental updates",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "bin": {
    "easbot-codebase": "./dist/cli.mjs"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "keywords": [
    "easbot",
    "code-knowledge-graph",
    "code-indexing",
    "tree-sitter",
    "ast",
    "property-graph",
    "code-search",
    "fts",
    "sqlite",
    "code-analysis",
    "semantic-search",
    "incremental-indexing"
  ],
  "author": "houjallen",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/houjallen/easbot.git",
    "directory": "packages/codebase"
  },
  "homepage": "https://github.com/houjallen/easbot/tree/main/packages/codebase#readme",
  "bugs": {
    "url": "https://github.com/houjallen/easbot/issues"
  },
  "files": [
    "dist",
    "README.md",
    "README.en.md",
    "LICENSE"
  ],
  "dependencies": {
    "@ai-sdk/provider": "^3.0.10",
    "@ai-sdk/provider-utils": "^4.0.27",
    "@ai-sdk/openai-compatible": "^2.0.47",
    "@ai-sdk/anthropic": "^3.0.76",
    "@parcel/watcher": "^2.5.6",
    "@tree-sitter-grammars/tree-sitter-zig": "^1.1.2",
    "ai": "^6.0.176",
    "better-sqlite3": "^12.9.0",
    "commander": "^14.0.3",
    "tree-sitter-c": "^0.24.1",
    "tree-sitter-c-sharp": "^0.23.5",
    "tree-sitter-cpp": "^0.23.4",
    "tree-sitter-go": "^0.25.0",
    "tree-sitter-java": "^0.23.5",
    "tree-sitter-javascript": "^0.25.0",
    "tree-sitter-php": "^0.24.2",
    "tree-sitter-python": "^0.25.0",
    "tree-sitter-ruby": "^0.23.1",
    "tree-sitter-rust": "^0.24.0",
    "tree-sitter-scala": "^0.24.0",
    "tree-sitter-typescript": "^0.23.2",
    "web-tree-sitter": "^0.26.8",
    "xdg-basedir": "^5.1.0",
    "zod": "^4.4.3",
    "@easbot/database": "0.3.10",
    "@easbot/local-model-sdk": "0.3.10",
    "@easbot/mcp": "0.3.10",
    "@easbot/types": "0.3.10",
    "@easbot/utils": "0.3.10"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.14",
    "@types/node": "^25.6.2",
    "@vitest/coverage-v8": "^4.1.5",
    "dotenv": "^17.4.2",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.5"
  },
  "engines": {
    "node": ">=22.22.3"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "tsup --watch --env.NODE_ENV development",
    "build": "tsup --env.NODE_ENV production",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:clean": "npx tsx scripts/clean-test-fixtures.ts",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "lint:report": "biome check --reporter=summary .",
    "format": "biome format .",
    "format:fix": "biome format --write .",
    "type-check": "tsc --noEmit",
    "clean": "npx rimraf dist node_modules",
    "publish:npm": "bash scripts/publish.sh",
    "publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
  }
}