dejared-mcp 0.0.1 → 0.1.0
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/.claude-plugin/plugin.json +0 -1
- package/lib/jar-runner.js +1 -1
- package/package.json +1 -2
package/lib/jar-runner.js
CHANGED
|
@@ -7,7 +7,7 @@ const path = require("node:path");
|
|
|
7
7
|
const os = require("node:os");
|
|
8
8
|
|
|
9
9
|
const PACKAGE = require(path.join(__dirname, "..", "package.json"));
|
|
10
|
-
const JAR_VERSION = PACKAGE.
|
|
10
|
+
const JAR_VERSION = PACKAGE.version;
|
|
11
11
|
const JAR_NAME = `dejared-mcp-${JAR_VERSION}.jar`;
|
|
12
12
|
const CACHE_DIR = path.join(os.homedir(), ".dejared-mcp");
|
|
13
13
|
const JAR_PATH = path.join(CACHE_DIR, JAR_NAME);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dejared-mcp",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Explore, analyze, and decompile Java JAR files via MCP",
|
|
5
5
|
"bin": {
|
|
6
6
|
"dejared-mcp": "bin/dejared-mcp.js"
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"README.md",
|
|
15
15
|
"LICENSE"
|
|
16
16
|
],
|
|
17
|
-
"jarVersion": "0.0.1",
|
|
18
17
|
"license": "MIT",
|
|
19
18
|
"author": "HuynhKhanh1402",
|
|
20
19
|
"repository": {
|