@harusame64/desktop-touch-mcp 1.6.1 → 1.7.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/bin/launcher.js +3 -3
- package/package.json +7 -6
package/bin/launcher.js
CHANGED
|
@@ -18,15 +18,15 @@ import path from "node:path";
|
|
|
18
18
|
import { Readable } from "node:stream";
|
|
19
19
|
import { pipeline } from "node:stream/promises";
|
|
20
20
|
|
|
21
|
-
const PACKAGE_VERSION = "1.
|
|
21
|
+
const PACKAGE_VERSION = "1.7.0";
|
|
22
22
|
const RELEASE_TAG = `v${PACKAGE_VERSION}`;
|
|
23
23
|
const REPO_API_URL = `https://api.github.com/repos/Harusame64/desktop-touch-mcp/releases/tags/${RELEASE_TAG}`;
|
|
24
24
|
const ASSET_NAME = "desktop-touch-mcp-windows.zip";
|
|
25
25
|
const RELEASE_METADATA_FILE = ".desktop-touch-release.json";
|
|
26
26
|
const RELEASE_MANIFEST = {
|
|
27
|
-
tagName: "v1.
|
|
27
|
+
tagName: "v1.7.0",
|
|
28
28
|
assetName: ASSET_NAME,
|
|
29
|
-
sha256: "
|
|
29
|
+
sha256: "6a82d0cba298697d513bf3b5fabf5834be64cca5b7068b16314d7e6a5f964e39",
|
|
30
30
|
};
|
|
31
31
|
const CACHE_ROOT = process.env.DESKTOP_TOUCH_MCP_HOME
|
|
32
32
|
? path.resolve(process.env.DESKTOP_TOUCH_MCP_HOME)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harusame64/desktop-touch-mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"mcpName": "io.github.Harusame64/desktop-touch-mcp",
|
|
5
5
|
"description": "Let Claude, Cursor, or any MCP client see and operate your Windows 10/11 desktop. 28 tools for screenshots, UI Automation, Chrome CDP, keyboard/mouse, terminal, with semantic discover-then-act targeting and per-action perception guards that avoid wrong-window typing and stale-coordinate clicks.",
|
|
6
6
|
"keywords": [
|
|
@@ -104,15 +104,16 @@
|
|
|
104
104
|
"@modelcontextprotocol/sdk": "^1.10.0",
|
|
105
105
|
"@napi-rs/cli": "^3.6.2",
|
|
106
106
|
"@nut-tree-fork/nut-js": "^4.2.6",
|
|
107
|
-
"@types/node": "^25.
|
|
107
|
+
"@types/node": "^25.8.0",
|
|
108
108
|
"@types/ws": "^8.18.1",
|
|
109
|
-
"eslint": "^10.
|
|
109
|
+
"eslint": "^10.4.0",
|
|
110
|
+
"fast-check": "^4.8.0",
|
|
110
111
|
"globals": "^17.5.0",
|
|
111
112
|
"sharp": "^0.34.5",
|
|
112
113
|
"typescript": "^6.0.2",
|
|
113
|
-
"typescript-eslint": "^8.59.
|
|
114
|
-
"vitest": "^4.1.
|
|
115
|
-
"ws": "^8.20.
|
|
114
|
+
"typescript-eslint": "^8.59.3",
|
|
115
|
+
"vitest": "^4.1.6",
|
|
116
|
+
"ws": "^8.20.1",
|
|
116
117
|
"zod": "^4.3.6"
|
|
117
118
|
}
|
|
118
119
|
}
|