@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
package/README.md
CHANGED
|
@@ -299,7 +299,7 @@ Smart filter to show only dependencies that are actually used in your code. Togg
|
|
|
299
299
|
|
|
300
300
|
## Prerequisites
|
|
301
301
|
|
|
302
|
-
- **Node.js**:
|
|
302
|
+
- **Node.js**: v22 or higher
|
|
303
303
|
- **VS Code**: v1.96.0 or higher
|
|
304
304
|
|
|
305
305
|
**No build tools required** — the extension uses WebAssembly (WASM) parsers. No Python, C++ compiler, or native compilation needed.
|
|
@@ -707,6 +707,8 @@ For comprehensive development instructions, see:
|
|
|
707
707
|
|
|
708
708
|
- **[DEVELOPMENT.md](DEVELOPMENT.md)** — Setup, build, testing, WASM architecture
|
|
709
709
|
- **[CONTRIBUTING.md](CONTRIBUTING.md)** — Contribution guidelines, branch naming, commit conventions
|
|
710
|
+
- **[docs/architecture/codemaps/architecture.md](docs/architecture/codemaps/architecture.md)** — **System architecture overview** with 5-layer diagram and 50+ component descriptions
|
|
711
|
+
- **[docs/architecture/codemaps/class-hierarchy.md](docs/architecture/codemaps/class-hierarchy.md)** — **Class hierarchy diagram** with 45+ core classes, interfaces, and design patterns
|
|
710
712
|
- **[docs/development/CODING_STANDARDS.md](docs/development/CODING_STANDARDS.md)** — TypeScript conventions and code style rules
|
|
711
713
|
- **[docs/development/CROSS_PLATFORM_TESTING.md](docs/development/CROSS_PLATFORM_TESTING.md)** — Cross-platform compatibility requirements (Windows/Linux/macOS)
|
|
712
714
|
- **[docs/architecture/TOON_FORMAT.md](docs/architecture/TOON_FORMAT.md)** — Token-Optimized Output format specification for AI tools
|
|
@@ -717,6 +719,7 @@ For comprehensive development instructions, see:
|
|
|
717
719
|
```bash
|
|
718
720
|
git clone https://github.com/magic5644/Graph-It-Live.git
|
|
719
721
|
cd Graph-It-Live
|
|
722
|
+
nvm use # optional, uses Node.js 22 when nvm is installed
|
|
720
723
|
npm install
|
|
721
724
|
npm run build
|
|
722
725
|
# Press F5 in VS Code to launch the Extension Development Host
|