@kaeawc/auto-mobile 0.0.35 → 0.0.37

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/package.json CHANGED
@@ -1,10 +1,12 @@
1
1
  {
2
2
  "name": "@kaeawc/auto-mobile",
3
- "version": "0.0.35",
3
+ "version": "0.0.37",
4
4
  "description": "Mobile device interaction automation via MCP",
5
5
  "scripts": {
6
6
  "test": "bun test",
7
7
  "test:coverage": "bun test --coverage",
8
+ "test:startup:bun": "bash scripts/ci/mcp-startup-smoke.sh",
9
+ "test:sharp:bun": "bun scripts/ci/sharp-runtime-smoke.ts",
8
10
  "test:memory-leaks": "node --expose-gc --import tsx scripts/detect-memory-leaks.ts",
9
11
  "lint": "eslint . --fix",
10
12
  "watch": "bun --watch src/index.ts",
@@ -73,7 +75,7 @@
73
75
  "access": "public"
74
76
  },
75
77
  "dependencies": {
76
- "@anthropic-ai/sdk": "^0.102.0",
78
+ "@anthropic-ai/sdk": "^0.105.0",
77
79
  "@modelcontextprotocol/sdk": "^1.26.0",
78
80
  "adm-zip": "^0.5.16",
79
81
  "ajv": "^8.18.0",
@@ -113,14 +115,23 @@
113
115
  "@img/sharp-darwin-x64": "0.34.5",
114
116
  "@img/sharp-libvips-darwin-arm64": "1.2.4",
115
117
  "@img/sharp-libvips-darwin-x64": "1.2.4",
118
+ "@img/sharp-libvips-linux-arm": "1.2.4",
116
119
  "@img/sharp-libvips-linux-arm64": "1.2.4",
120
+ "@img/sharp-libvips-linux-ppc64": "1.2.4",
121
+ "@img/sharp-libvips-linux-riscv64": "1.2.4",
122
+ "@img/sharp-libvips-linux-s390x": "1.2.4",
117
123
  "@img/sharp-libvips-linux-x64": "1.2.4",
118
124
  "@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
119
125
  "@img/sharp-libvips-linuxmusl-x64": "1.2.4",
126
+ "@img/sharp-linux-arm": "0.34.5",
120
127
  "@img/sharp-linux-arm64": "0.34.5",
128
+ "@img/sharp-linux-ppc64": "0.34.5",
129
+ "@img/sharp-linux-riscv64": "0.34.5",
130
+ "@img/sharp-linux-s390x": "0.34.5",
121
131
  "@img/sharp-linux-x64": "0.34.5",
122
132
  "@img/sharp-linuxmusl-arm64": "0.34.5",
123
133
  "@img/sharp-linuxmusl-x64": "0.34.5",
134
+ "@img/sharp-wasm32": "0.34.5",
124
135
  "@img/sharp-win32-arm64": "0.34.5",
125
136
  "@img/sharp-win32-ia32": "0.34.5",
126
137
  "@img/sharp-win32-x64": "0.34.5"
@@ -129,7 +140,7 @@
129
140
  "@faker-js/faker": "^10.2.0",
130
141
  "@stylistic/eslint-plugin": "^5.7.0",
131
142
  "@types/js-yaml": "^4.0.9",
132
- "@types/node": "^25.0.9",
143
+ "@types/node": "^26.0.0",
133
144
  "@types/pixelmatch": "^5.2.6",
134
145
  "@types/pngjs": "^6.0.5",
135
146
  "@types/ws": "^8.18.1",
@@ -1782,7 +1782,7 @@
1782
1782
  },
1783
1783
  {
1784
1784
  "name": "inputText",
1785
- "description": "Input text",
1785
+ "description": "Input text. The optional mode field is Android-only and ignored on iOS.",
1786
1786
  "inputSchema": {
1787
1787
  "$schema": "https://json-schema.org/draft/2020-12/schema",
1788
1788
  "type": "object",
@@ -1792,6 +1792,15 @@
1792
1792
  "minLength": 1,
1793
1793
  "description": "Text to input"
1794
1794
  },
1795
+ "mode": {
1796
+ "description": "(Android only; ignored on iOS) Text input mode. a11y (default) sets text directly. eventLast sets text with a11y up to the last printable non-whitespace ASCII character, sends that character as a real key event, then restores any suffix with a11y. eventAll clears the field with a11y, sends key events for mappable ASCII characters, and uses a11y for Unicode/emoji runs. Search fields that use autocomplete should probably try eventLast; otherwise accept the default.",
1797
+ "type": "string",
1798
+ "enum": [
1799
+ "a11y",
1800
+ "eventLast",
1801
+ "eventAll"
1802
+ ]
1803
+ },
1795
1804
  "imeAction": {
1796
1805
  "description": "IME action after input",
1797
1806
  "type": "string",