claude-code-graph
Version:
Claude Code with live structural graphs for large codebases
90 lines • 2.52 kB
JSON
{
"name": "claude-code-graph",
"version": "1.2.0",
"description": "Claude Code with live structural graphs for large codebases",
"main": "src/index.js",
"type": "module",
"bin": {
"claude-code-graph": "bin/claude-code-graph",
"ccg": "bin/ccg"
},
"scripts": {
"build": "chmod +x tools/* && chmod +x bin/*",
"dev": "tsc --watch",
"test": "jest",
"test:unit": "jest tests/graph tests/unit",
"test:integration": "jest tests/integration",
"test:performance": "jest tests/performance --timeout=60000",
"test:watch": "jest --watch",
"start": "node src/index.js",
"postinstall": "./scripts/install-deps.sh",
"graph:daemon": "source .venv/bin/activate && python tools/codegraphd.py",
"graph:daemon:start": "npm run graph:daemon",
"graph:daemon:stop": "node bin/status.js stop",
"graph:daemon:restart": "node bin/status.js restart",
"graph:daemon:status": "node bin/status.js",
"graph:build": "./tools/codegraph.sh",
"graph:refresh": "node bin/status.js refresh",
"doctor": "node bin/doctor.js",
"init": "node bin/init.js",
"status": "node bin/status.js",
"lint": "eslint src/**/*.js tests/**/*.js",
"format": "prettier --write src/**/*.js tests/**/*.js",
"clean": "rm -rf dist .graph/* node_modules/.cache",
"install:deps": "./scripts/install-deps.sh"
},
"dependencies": {
"graphlib": "^2.1.8",
"d3-hierarchy": "^3.1.2",
"lodash.debounce": "^4.0.8",
"chokidar": "^3.5.3",
"commander": "^11.1.0",
"chalk": "^5.3.0",
"ora": "^7.0.1",
"inquirer": "^9.2.12",
"tree-kill": "^1.2.2",
"ps-tree": "^1.2.0"
},
"devDependencies": {
"jest": "^29.7.0",
"@types/jest": "^29.5.8",
"typescript": "^5.3.2",
"@types/node": "^20.9.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"supertest": "^6.3.3",
"tmp": "^0.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"os": ["linux", "darwin"],
"keywords": [
"claude",
"code-analysis",
"graph",
"ast",
"refactoring",
"code-navigation",
"structural-analysis"
],
"repository": {
"type": "git",
"url": "https://github.com/aibozo/claude-code.graph.git"
},
"bugs": {
"url": "https://github.com/aibozo/claude-code.graph/issues"
},
"homepage": "https://github.com/aibozo/claude-code.graph#readme",
"license": "MIT",
"author": "aibozo",
"files": [
"dist/",
"bin/",
"tools/",
"scripts/",
"src/",
"README.md",
"LICENSE.md"
]
}