@magic5644/graph-it-live 1.9.2 → 1.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/dist/astWorker.js +1 -1
- package/dist/graph-it.js +305 -273
- package/dist/indexerWorker.js +1 -1
- package/dist/mcpServer.mjs +89 -64
- package/dist/mcpWorker.js +189 -164
- package/dist/wasm/tree-sitter.wasm +0 -0
- package/docs/CLI.md +2 -0
- package/docs/README.md +1 -0
- package/package.json +21 -19
|
Binary file
|
package/docs/CLI.md
CHANGED
package/docs/README.md
CHANGED
|
@@ -13,6 +13,7 @@ Documentation describing how the system is built and how the layers interact.
|
|
|
13
13
|
| File | Description |
|
|
14
14
|
|------|-------------|
|
|
15
15
|
| [architecture/codemaps/architecture.md](architecture/codemaps/architecture.md) | System overview — layers, services, file count |
|
|
16
|
+
| [architecture/codemaps/class-hierarchy.md](architecture/codemaps/class-hierarchy.md) | **Class hierarchy diagram** — core interfaces, 45+ classes, design patterns |
|
|
16
17
|
| [architecture/codemaps/backend.md](architecture/codemaps/backend.md) | Analyzer, MCP, and extension services |
|
|
17
18
|
| [architecture/codemaps/cli.md](architecture/codemaps/cli.md) | Standalone CLI layer (`graph-it`) |
|
|
18
19
|
| [architecture/codemaps/frontend.md](architecture/codemaps/frontend.md) | Webview / React components |
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@magic5644/graph-it-live",
|
|
3
3
|
"displayName": "Graph-It-Live",
|
|
4
4
|
"description": "AI-first dependency graph & code intelligence for VS Code. Visualize file imports, symbol call hierarchies, and cross-file call graphs. Detect circular dependencies, dead code, and breaking changes. Built-in MCP Server with 21 tools for GitHub Copilot, Cursor, Claude, Windsurf, and Antigravity. Generate AI-friendly codemaps. TypeScript, JavaScript, C#, Go, Java, Python, Rust, Vue, Svelte, GraphQL.",
|
|
5
|
-
"version": "1.9.
|
|
5
|
+
"version": "1.9.4",
|
|
6
6
|
"publisher": "magic5644",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "magic56"
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
],
|
|
70
70
|
"engines": {
|
|
71
71
|
"vscode": "^1.96.0",
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=22.0.0"
|
|
73
73
|
},
|
|
74
74
|
"categories": [
|
|
75
75
|
"Visualization",
|
|
@@ -1115,43 +1115,45 @@
|
|
|
1115
1115
|
},
|
|
1116
1116
|
"dependencies": {
|
|
1117
1117
|
"@dagrejs/dagre": "^2.0.4",
|
|
1118
|
-
"@inquirer/core": "^11.1.
|
|
1119
|
-
"@inquirer/prompts": "^8.4.
|
|
1118
|
+
"@inquirer/core": "^11.1.10",
|
|
1119
|
+
"@inquirer/prompts": "^8.4.3",
|
|
1120
1120
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
1121
1121
|
"chokidar": "^5.0.0",
|
|
1122
|
-
"cytoscape": "^3.33.
|
|
1122
|
+
"cytoscape": "^3.33.4",
|
|
1123
1123
|
"cytoscape-fcose": "^2.2.0",
|
|
1124
|
-
"
|
|
1125
|
-
"react
|
|
1124
|
+
"ink": "^7.0.4",
|
|
1125
|
+
"react": "^19.2.6",
|
|
1126
|
+
"react-devtools-core": "^6.1.5",
|
|
1127
|
+
"react-dom": "^19.2.6",
|
|
1126
1128
|
"reactflow": "^11.11.4",
|
|
1127
1129
|
"sql.js": "^1.14.1",
|
|
1128
1130
|
"tree-sitter-wasms": "^0.1.13",
|
|
1129
1131
|
"ts-morph": "^27.0.2",
|
|
1130
|
-
"web-tree-sitter": "^0.26.
|
|
1131
|
-
"zod": "^4.3
|
|
1132
|
+
"web-tree-sitter": "^0.26.9",
|
|
1133
|
+
"zod": "^4.4.3"
|
|
1132
1134
|
},
|
|
1133
1135
|
"devDependencies": {
|
|
1134
1136
|
"@eslint/js": "^10.0.1",
|
|
1135
1137
|
"@types/mocha": "^10.0.10",
|
|
1136
|
-
"@types/node": "^25.
|
|
1137
|
-
"@types/react": "^19.2.
|
|
1138
|
+
"@types/node": "^25.9.1",
|
|
1139
|
+
"@types/react": "^19.2.15",
|
|
1138
1140
|
"@types/react-dom": "^19.2.3",
|
|
1139
1141
|
"@types/sql.js": "^1.4.11",
|
|
1140
1142
|
"@types/vscode": "^1.96.0",
|
|
1141
|
-
"@vitest/coverage-v8": "^4.1.
|
|
1142
|
-
"@vitest/ui": "^4.1.
|
|
1143
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
1144
|
+
"@vitest/ui": "^4.1.7",
|
|
1143
1145
|
"@vscode/test-electron": "^2.5.2",
|
|
1144
1146
|
"@vscode/vsce": "^3.9.1",
|
|
1145
1147
|
"esbuild": "^0.27.7",
|
|
1146
1148
|
"esbuild-css-modules-plugin": "^3.1.5",
|
|
1147
|
-
"eslint": "^10.
|
|
1148
|
-
"fast-check": "^4.
|
|
1149
|
+
"eslint": "^10.4.0",
|
|
1150
|
+
"fast-check": "^4.8.0",
|
|
1149
1151
|
"glob": "^13.0.6",
|
|
1150
|
-
"globals": "^17.
|
|
1151
|
-
"mocha": "^11.7.
|
|
1152
|
+
"globals": "^17.6.0",
|
|
1153
|
+
"mocha": "^11.7.6",
|
|
1152
1154
|
"typescript": "^6.0.3",
|
|
1153
|
-
"typescript-eslint": "^8.59.
|
|
1154
|
-
"vitest": "^4.1.
|
|
1155
|
+
"typescript-eslint": "^8.59.4",
|
|
1156
|
+
"vitest": "^4.1.7"
|
|
1155
1157
|
},
|
|
1156
1158
|
"overrides": {
|
|
1157
1159
|
"picomatch": "^4.0.4",
|