depwire-cli 0.9.30 → 1.0.1
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 +57 -8
- package/dist/{chunk-FUIZQCYB.js → chunk-5D36PY3Q.js} +10 -7
- package/dist/{chunk-WUSXCZXA.js → chunk-LV32EDYQ.js} +1703 -159
- package/dist/index.js +4 -4
- package/dist/mcpb-entry.js +2 -2
- package/dist/parser/grammars/tree-sitter-c_sharp.wasm +0 -0
- package/dist/parser/grammars/tree-sitter-java.wasm +0 -0
- package/dist/sdk.js +1 -1
- package/package.json +3 -1
package/dist/index.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
stashChanges,
|
|
18
18
|
updateFileInGraph,
|
|
19
19
|
watchProject
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-5D36PY3Q.js";
|
|
21
21
|
import {
|
|
22
22
|
SimulationEngine,
|
|
23
23
|
analyzeDeadCode,
|
|
@@ -31,7 +31,7 @@ import {
|
|
|
31
31
|
parseProject,
|
|
32
32
|
scanSecurity,
|
|
33
33
|
searchSymbols
|
|
34
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-LV32EDYQ.js";
|
|
35
35
|
|
|
36
36
|
// src/index.ts
|
|
37
37
|
import { Command } from "commander";
|
|
@@ -1077,8 +1077,8 @@ var __dirname4 = dirname4(__filename4);
|
|
|
1077
1077
|
var packageJsonPath = join5(__dirname4, "../package.json");
|
|
1078
1078
|
var packageJson = JSON.parse(readFileSync3(packageJsonPath, "utf-8"));
|
|
1079
1079
|
var program = new Command();
|
|
1080
|
-
program.name("depwire").description("Code cross-reference graph builder for
|
|
1081
|
-
program.command("parse").description("Parse a
|
|
1080
|
+
program.name("depwire").description("Code cross-reference graph builder for multi-language projects").version(packageJson.version);
|
|
1081
|
+
program.command("parse").description("Parse a project and build dependency graph").argument("[directory]", "Project directory to parse (defaults to current directory or auto-detected project root)").option("-o, --output <path>", "Output JSON file path", "depwire-output.json").option("--pretty", "Pretty-print JSON output").option("--stats", "Print summary statistics").option("--exclude <patterns...>", 'Glob patterns to exclude (e.g., "**/*.test.*" "dist/**")').option("--verbose", "Show detailed parsing progress").action(async (directory, options) => {
|
|
1082
1082
|
trackCommand("parse", packageJson.version);
|
|
1083
1083
|
const startTime = Date.now();
|
|
1084
1084
|
try {
|
package/dist/mcpb-entry.js
CHANGED
|
@@ -4,11 +4,11 @@ import {
|
|
|
4
4
|
startMcpServer,
|
|
5
5
|
updateFileInGraph,
|
|
6
6
|
watchProject
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-5D36PY3Q.js";
|
|
8
8
|
import {
|
|
9
9
|
buildGraph,
|
|
10
10
|
parseProject
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-LV32EDYQ.js";
|
|
12
12
|
|
|
13
13
|
// src/mcpb-entry.ts
|
|
14
14
|
import { resolve } from "path";
|
|
Binary file
|
|
Binary file
|
package/dist/sdk.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "depwire-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Dependency graph + 17 MCP tools for AI coding assistants. Impact analysis, health scoring, security scanner.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -72,6 +72,8 @@
|
|
|
72
72
|
"minimatch": "10.2.4",
|
|
73
73
|
"open": "11.0.0",
|
|
74
74
|
"simple-git": "3.35.2",
|
|
75
|
+
"tree-sitter-c-sharp": "^0.23.5",
|
|
76
|
+
"tree-sitter-java": "^0.23.5",
|
|
75
77
|
"web-tree-sitter": "0.26.6",
|
|
76
78
|
"ws": "8.19.0",
|
|
77
79
|
"zod": "4.3.6"
|