@magic5644/graph-it-live 1.9.3 → 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 +2 -1
- package/dist/astWorker.js +1 -1
- package/dist/graph-it.js +290 -283
- package/dist/indexerWorker.js +1 -1
- package/dist/mcpWorker.js +70 -70
- package/dist/wasm/tree-sitter.wasm +0 -0
- package/docs/CLI.md +2 -0
- package/package.json +15 -13
|
Binary file
|
package/docs/CLI.md
CHANGED
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",
|
|
@@ -1119,39 +1119,41 @@
|
|
|
1119
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
|
+
"ink": "^7.0.4",
|
|
1124
1125
|
"react": "^19.2.6",
|
|
1126
|
+
"react-devtools-core": "^6.1.5",
|
|
1125
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.
|
|
1132
|
+
"web-tree-sitter": "^0.26.9",
|
|
1131
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
1152
|
"globals": "^17.6.0",
|
|
1151
|
-
"mocha": "^11.7.
|
|
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",
|