@ebowwa/dependency-graph-mcp 1.1.0 → 1.1.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/bun.lock +2 -2
- package/package.json +7 -3
package/bun.lock
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"": {
|
|
6
6
|
"name": "@ebowwa/dependency-graph-mcp",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@ebowwa/dependency-graph": "^1.0.
|
|
8
|
+
"@ebowwa/dependency-graph": "^1.0.2",
|
|
9
9
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
10
10
|
"zod": "^3.24.1",
|
|
11
11
|
},
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
},
|
|
22
22
|
"packages": {
|
|
23
|
-
"@ebowwa/dependency-graph": ["@ebowwa/dependency-graph@1.0.
|
|
23
|
+
"@ebowwa/dependency-graph": ["@ebowwa/dependency-graph@1.0.2", "", { "bin": { "dependency-graph": "dist/cli.js" } }, "sha512-r9wggNgQ3t+oFg/1hd4wTs29uJ8ckVa9l1mHWQXBHnrHsgvPI+fhwJOHJLbGrU0vsOpv5q8H3ikThiQDMtPFxA=="],
|
|
24
24
|
|
|
25
25
|
"@hono/node-server": ["@hono/node-server@1.19.9", "", { "peerDependencies": { "hono": "^4" } }, "sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw=="],
|
|
26
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ebowwa/dependency-graph-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "MCP server for dependency graph analysis and visualization in monorepos",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -11,10 +11,14 @@
|
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "bun build src/cli.ts --outdir dist --target node && bun build src/index.ts --outdir dist --target node && chmod +x dist/cli.js",
|
|
13
13
|
"dev": "bun run src/index.ts",
|
|
14
|
-
"mcp-dev": "MCP_DEV=true bun run src/index.ts"
|
|
14
|
+
"mcp-dev": "MCP_DEV=true bun run src/index.ts",
|
|
15
|
+
"bump:patch": "npm version patch --no-git-tag-version && bun run build",
|
|
16
|
+
"bump:minor": "npm version minor --no-git-tag-version && bun run build",
|
|
17
|
+
"bump:major": "npm version major --no-git-tag-version && bun run build",
|
|
18
|
+
"prepublishOnly": "bun run build"
|
|
15
19
|
},
|
|
16
20
|
"dependencies": {
|
|
17
|
-
"@ebowwa/dependency-graph": "^1.0.
|
|
21
|
+
"@ebowwa/dependency-graph": "^1.0.2",
|
|
18
22
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
19
23
|
"zod": "^3.24.1"
|
|
20
24
|
},
|