@magic5644/graph-it-live 1.9.3 → 1.9.5

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.
Binary file
package/docs/CLI.md CHANGED
@@ -35,6 +35,8 @@ The `graph-it` CLI gives you full access to the dependency analysis engine of Gr
35
35
 
36
36
  ## Installation
37
37
 
38
+ **Prerequisite:** Node.js v22 or higher.
39
+
38
40
  **Global install (recommended):**
39
41
 
40
42
  ```bash
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.3",
5
+ "version": "1.9.5",
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": ">=20.0.0"
72
+ "node": ">=22.0.0"
73
73
  },
74
74
  "categories": [
75
75
  "Visualization",
@@ -1100,6 +1100,7 @@
1100
1100
  "test:vscode:vsix": "npm run package && npm run compile:tests && node ./tests/vscode-e2e/runTests.js --vsix",
1101
1101
  "test:all": "npm run test:unit",
1102
1102
  "test:bench": "node scripts/run-benchmarks.mjs",
1103
+ "test:bench:memory": "node scripts/run-memory-bench.mjs",
1103
1104
  "test:mcp": "node scripts/test-mcp.js",
1104
1105
  "test:cli:e2e": "bash scripts/test-cli-e2e.sh",
1105
1106
  "lint": "eslint src",
@@ -1115,43 +1116,45 @@
1115
1116
  },
1116
1117
  "dependencies": {
1117
1118
  "@dagrejs/dagre": "^2.0.4",
1118
- "@inquirer/core": "^11.1.10",
1119
- "@inquirer/prompts": "^8.4.3",
1119
+ "@inquirer/core": "^11.2.0",
1120
+ "@inquirer/prompts": "^8.5.0",
1120
1121
  "@modelcontextprotocol/sdk": "^1.29.0",
1121
1122
  "chokidar": "^5.0.0",
1122
- "cytoscape": "^3.33.3",
1123
+ "cytoscape": "^3.33.4",
1123
1124
  "cytoscape-fcose": "^2.2.0",
1125
+ "ink": "^7.0.4",
1124
1126
  "react": "^19.2.6",
1127
+ "react-devtools-core": "^6.1.5",
1125
1128
  "react-dom": "^19.2.6",
1126
1129
  "reactflow": "^11.11.4",
1127
1130
  "sql.js": "^1.14.1",
1128
1131
  "tree-sitter-wasms": "^0.1.13",
1129
1132
  "ts-morph": "^27.0.2",
1130
- "web-tree-sitter": "^0.26.8",
1133
+ "web-tree-sitter": "^0.26.9",
1131
1134
  "zod": "^4.4.3"
1132
1135
  },
1133
1136
  "devDependencies": {
1134
1137
  "@eslint/js": "^10.0.1",
1135
1138
  "@types/mocha": "^10.0.10",
1136
- "@types/node": "^25.6.0",
1137
- "@types/react": "^19.2.14",
1139
+ "@types/node": "^25.9.1",
1140
+ "@types/react": "^19.2.15",
1138
1141
  "@types/react-dom": "^19.2.3",
1139
1142
  "@types/sql.js": "^1.4.11",
1140
1143
  "@types/vscode": "^1.96.0",
1141
- "@vitest/coverage-v8": "^4.1.5",
1142
- "@vitest/ui": "^4.1.5",
1144
+ "@vitest/coverage-v8": "^4.1.7",
1145
+ "@vitest/ui": "^4.1.7",
1143
1146
  "@vscode/test-electron": "^2.5.2",
1144
1147
  "@vscode/vsce": "^3.9.1",
1145
1148
  "esbuild": "^0.27.7",
1146
1149
  "esbuild-css-modules-plugin": "^3.1.5",
1147
- "eslint": "^10.3.0",
1148
- "fast-check": "^4.7.0",
1150
+ "eslint": "^10.4.0",
1151
+ "fast-check": "^4.8.0",
1149
1152
  "glob": "^13.0.6",
1150
1153
  "globals": "^17.6.0",
1151
- "mocha": "^11.7.5",
1154
+ "mocha": "^11.7.6",
1152
1155
  "typescript": "^6.0.3",
1153
- "typescript-eslint": "^8.59.2",
1154
- "vitest": "^4.1.5"
1156
+ "typescript-eslint": "^8.60.0",
1157
+ "vitest": "^4.1.7"
1155
1158
  },
1156
1159
  "overrides": {
1157
1160
  "picomatch": "^4.0.4",