{
  "name": "@nahisaho/musubix-codegraph",
  "version": "3.8.2",
  "description": "MUSUBIX CodeGraph - Multi-language Code Graph Analysis Engine supporting 16 programming languages with PR generation",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "cg": "./dist/cli.js",
    "musubix-codegraph": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./parser": {
      "types": "./dist/parser/index.d.ts",
      "import": "./dist/parser/index.js"
    },
    "./graph": {
      "types": "./dist/graph/index.d.ts",
      "import": "./dist/graph/index.js"
    },
    "./storage": {
      "types": "./dist/storage/index.d.ts",
      "import": "./dist/storage/index.js"
    },
    "./graphrag": {
      "types": "./dist/graphrag/index.d.ts",
      "import": "./dist/graphrag/index.js"
    },
    "./pr": {
      "types": "./dist/pr/index.d.ts",
      "import": "./dist/pr/index.js"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src --ext .ts",
    "clean": "rm -rf dist"
  },
  "keywords": [
    "codegraph",
    "ast",
    "tree-sitter",
    "code-analysis",
    "graphrag",
    "musubix",
    "mcp"
  ],
  "author": "nahisaho",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/nahisaho/MUSUBIX.git",
    "directory": "packages/codegraph"
  },
  "bugs": {
    "url": "https://github.com/nahisaho/MUSUBIX/issues"
  },
  "homepage": "https://github.com/nahisaho/MUSUBIX/tree/main/packages/codegraph#readme",
  "engines": {
    "node": ">=20.0.0"
  },
  "dependencies": {
    "commander": "^12.0.0",
    "tree-sitter": "^0.21.1",
    "tree-sitter-typescript": "^0.21.2",
    "tree-sitter-javascript": "^0.21.4",
    "tree-sitter-python": "^0.21.0",
    "chokidar": "^3.6.0"
  },
  "optionalDependencies": {
    "tree-sitter-rust": "^0.21.2",
    "tree-sitter-go": "^0.21.2",
    "tree-sitter-java": "^0.21.0",
    "tree-sitter-php": "^0.22.0",
    "tree-sitter-c-sharp": "^0.21.3",
    "tree-sitter-c": "^0.21.5",
    "tree-sitter-cpp": "^0.22.0",
    "tree-sitter-ruby": "^0.21.1",
    "tree-sitter-hcl": "^0.1.1",
    "tree-sitter-kotlin": "^0.3.8",
    "tree-sitter-swift": "^0.6.0",
    "tree-sitter-scala": "^0.21.0",
    "tree-sitter-lua": "^2.1.3"
  },
  "peerDependencies": {
    "@musubix/knowledge": "^3.0.0"
  },
  "peerDependenciesMeta": {
    "@musubix/knowledge": {
      "optional": true
    }
  },
  "devDependencies": {
    "@musubix/knowledge": "^3.7.3",
    "@types/node": "^20.0.0",
    "typescript": "^5.3.0",
    "vitest": "^4.0.16"
  }
}
