@harusame64/desktop-touch-mcp 1.1.3 → 1.3.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.
Files changed (2) hide show
  1. package/bin/launcher.js +3 -3
  2. package/package.json +14 -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.1.3";
21
+ const PACKAGE_VERSION = "1.3.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.1.3",
27
+ tagName: "v1.3.0",
28
28
  assetName: ASSET_NAME,
29
- sha256: "7eb1dd69b2d2a9bd8c882167afb1fc312ba91dae410d2c36e421cfb2251345d7",
29
+ sha256: "baaa87eea7db7c792684b1d7f78bdbca7f9cf3af249ccb5a60f2d199b9fb7b62",
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.1.3",
3
+ "version": "1.3.0",
4
4
  "mcpName": "io.github.Harusame64/desktop-touch-mcp",
5
5
  "description": "LLM-native Windows computer-use MCP server with 28 tools for screenshots, UIA, mouse/keyboard, Chrome CDP, terminal, SmartScroll, and perception guards",
6
6
  "engines": {
@@ -20,6 +20,9 @@
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
23
+ "overrides": {
24
+ "ip-address": "10.1.1"
25
+ },
23
26
  "napi": {
24
27
  "name": "desktop-touch-engine",
25
28
  "triples": {
@@ -44,7 +47,7 @@
44
47
  "check:launcher-manifest": "node scripts/check-launcher-manifest.mjs",
45
48
  "update-sha": "node scripts/update-sha.mjs",
46
49
  "version": "npm run sync-version && git add src/version.ts bin/launcher.js",
47
- "prepare": "tsc",
50
+ "prepare": "node scripts/install-hooks.mjs && tsc",
48
51
  "start": "node dist/index.js",
49
52
  "dev": "tsc --watch",
50
53
  "lint": "eslint .",
@@ -60,9 +63,15 @@
60
63
  "test:watch": "vitest",
61
64
  "generate:stub-catalog": "node scripts/generate-stub-tool-catalog.mjs",
62
65
  "check:stub-catalog": "node scripts/generate-stub-tool-catalog.mjs && git diff --exit-code src/stub-tool-catalog.ts",
63
- "build:rs": "napi build --platform --release && node -e \"const d=require('child_process').execSync('git diff -- index.d.ts').toString();if(d){console.warn('\\n⚠️ napi changed index.d.ts — update native-types.ts!\\n');console.warn(d)}\" && git restore --source=HEAD -- index.d.ts index.js",
64
- "build:rs:debug": "napi build --platform && node -e \"const d=require('child_process').execSync('git diff -- index.d.ts').toString();if(d){console.warn('\\n⚠️ napi changed index.d.ts — update native-types.ts!\\n');console.warn(d)}\" && git restore --source=HEAD -- index.d.ts index.js",
65
- "artifacts:rs": "napi artifacts"
66
+ "check:napi-safe": "node scripts/check-napi-safe.mjs",
67
+ "check:native-types": "node scripts/check-native-types.mjs",
68
+ "check:no-koffi": "node scripts/check-no-koffi.mjs",
69
+ "check:rs-workspace": "cargo check --workspace --locked",
70
+ "check:expansion-disjoint": "node scripts/check-expansion-disjoint.mjs",
71
+ "build:rs": "node scripts/build-rs.mjs --release",
72
+ "build:rs:debug": "node scripts/build-rs.mjs --debug",
73
+ "artifacts:rs": "napi artifacts",
74
+ "bench:envelope-size": "node benches/l4_envelope_size.mjs"
66
75
  },
67
76
  "devDependencies": {
68
77
  "@eslint/js": "^10.0.1",
@@ -73,7 +82,6 @@
73
82
  "@types/ws": "^8.18.1",
74
83
  "eslint": "^10.2.1",
75
84
  "globals": "^17.5.0",
76
- "koffi": "^2.9.0",
77
85
  "sharp": "^0.34.5",
78
86
  "typescript": "^6.0.2",
79
87
  "typescript-eslint": "^8.59.0",