minode-mcp-setup 1.0.0 → 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.
Files changed (2) hide show
  1. package/bin/cli.js +2 -2
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -9,7 +9,7 @@ const path = require('path');
9
9
  const os = require('os');
10
10
 
11
11
  const SITE = 'https://minode.site';
12
- const DEST = path.join(os.homedir(), 'Desktop', 'cheatengine-mcp-bridge');
12
+ const DEST = path.join(os.homedir(), 'Desktop');
13
13
  const ZIP_URL = `${SITE}/cheatengine-mcp-bridge.zip`;
14
14
  const ZIP_TMP = path.join(os.tmpdir(), 'cheatengine-mcp-bridge.zip');
15
15
 
@@ -130,7 +130,7 @@ async function installCE() {
130
130
 
131
131
  info('압축 해제 중...');
132
132
  fs.mkdirSync(DEST, { recursive: true });
133
- extractZip(ZIP_TMP, path.dirname(DEST));
133
+ extractZip(ZIP_TMP, DEST);
134
134
  ok('압축 해제 완료');
135
135
  } else {
136
136
  ok('패키지 이미 설치됨');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minode-mcp-setup",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Minode AI - MCP 서버 자동 설치 및 실행 도구",
5
5
  "bin": {
6
6
  "minode-mcp-setup": "./bin/cli.js"