@kaeawc/auto-mobile 0.0.34 → 0.0.36

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaeawc/auto-mobile",
3
- "version": "0.0.34",
3
+ "version": "0.0.36",
4
4
  "description": "Mobile device interaction automation via MCP",
5
5
  "scripts": {
6
6
  "test": "bun test",
@@ -73,7 +73,7 @@
73
73
  "access": "public"
74
74
  },
75
75
  "dependencies": {
76
- "@anthropic-ai/sdk": "^0.100.1",
76
+ "@anthropic-ai/sdk": "^0.105.0",
77
77
  "@modelcontextprotocol/sdk": "^1.26.0",
78
78
  "adm-zip": "^0.5.16",
79
79
  "ajv": "^8.18.0",
@@ -85,7 +85,7 @@
85
85
  "kysely": "^0.29.0",
86
86
  "pixelmatch": "^7.1.0",
87
87
  "pngjs": "^7.0.0",
88
- "sharp": "0.34.5",
88
+ "sharp": "0.35.2",
89
89
  "ws": "^8.19.0",
90
90
  "xml2js": "^0.6.2",
91
91
  "zod": "^4.3.5"
@@ -109,27 +109,37 @@
109
109
  }
110
110
  },
111
111
  "optionalDependencies": {
112
- "@img/sharp-darwin-arm64": "0.34.5",
113
- "@img/sharp-darwin-x64": "0.34.5",
114
- "@img/sharp-libvips-darwin-arm64": "1.2.4",
115
- "@img/sharp-libvips-darwin-x64": "1.2.4",
116
- "@img/sharp-libvips-linux-arm64": "1.2.4",
117
- "@img/sharp-libvips-linux-x64": "1.2.4",
118
- "@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
119
- "@img/sharp-libvips-linuxmusl-x64": "1.2.4",
120
- "@img/sharp-linux-arm64": "0.34.5",
121
- "@img/sharp-linux-x64": "0.34.5",
122
- "@img/sharp-linuxmusl-arm64": "0.34.5",
123
- "@img/sharp-linuxmusl-x64": "0.34.5",
124
- "@img/sharp-win32-arm64": "0.34.5",
125
- "@img/sharp-win32-ia32": "0.34.5",
126
- "@img/sharp-win32-x64": "0.34.5"
112
+ "@img/sharp-darwin-arm64": "0.35.2",
113
+ "@img/sharp-darwin-x64": "0.35.2",
114
+ "@img/sharp-freebsd-wasm32": "0.35.2",
115
+ "@img/sharp-libvips-darwin-arm64": "1.3.1",
116
+ "@img/sharp-libvips-darwin-x64": "1.3.1",
117
+ "@img/sharp-libvips-linux-arm": "1.3.1",
118
+ "@img/sharp-libvips-linux-arm64": "1.3.1",
119
+ "@img/sharp-libvips-linux-ppc64": "1.3.1",
120
+ "@img/sharp-libvips-linux-riscv64": "1.3.1",
121
+ "@img/sharp-libvips-linux-s390x": "1.3.1",
122
+ "@img/sharp-libvips-linux-x64": "1.3.1",
123
+ "@img/sharp-libvips-linuxmusl-arm64": "1.3.1",
124
+ "@img/sharp-libvips-linuxmusl-x64": "1.3.1",
125
+ "@img/sharp-linux-arm": "0.35.2",
126
+ "@img/sharp-linux-arm64": "0.35.2",
127
+ "@img/sharp-linux-ppc64": "0.35.2",
128
+ "@img/sharp-linux-riscv64": "0.35.2",
129
+ "@img/sharp-linux-s390x": "0.35.2",
130
+ "@img/sharp-linux-x64": "0.35.2",
131
+ "@img/sharp-linuxmusl-arm64": "0.35.2",
132
+ "@img/sharp-linuxmusl-x64": "0.35.2",
133
+ "@img/sharp-webcontainers-wasm32": "0.35.2",
134
+ "@img/sharp-win32-arm64": "0.35.2",
135
+ "@img/sharp-win32-ia32": "0.35.2",
136
+ "@img/sharp-win32-x64": "0.35.2"
127
137
  },
128
138
  "devDependencies": {
129
139
  "@faker-js/faker": "^10.2.0",
130
140
  "@stylistic/eslint-plugin": "^5.7.0",
131
141
  "@types/js-yaml": "^4.0.9",
132
- "@types/node": "^25.0.9",
142
+ "@types/node": "^26.0.0",
133
143
  "@types/pixelmatch": "^5.2.6",
134
144
  "@types/pngjs": "^6.0.5",
135
145
  "@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",