@kaeawc/auto-mobile 0.0.49 → 0.0.51

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,11 @@
1
1
  {
2
2
  "name": "@kaeawc/auto-mobile",
3
- "version": "0.0.49",
3
+ "version": "0.0.51",
4
4
  "description": "Mobile device interaction automation via MCP",
5
5
  "scripts": {
6
6
  "test": "bun test --isolate",
7
7
  "test:coverage": "bun test --isolate --coverage",
8
+ "test:fast": "bash scripts/test-fast.sh",
8
9
  "test:startup:bun": "bash scripts/ci/mcp-startup-smoke.sh",
9
10
  "test:image:bun": "bun scripts/ci/image-runtime-smoke.ts",
10
11
  "test:image:sharp-bun-repro": "bash scripts/validate-sharp-bun-repro.sh",
@@ -12,9 +13,12 @@
12
13
  "test:integration:webrtc-mediamtx": "bash scripts/webrtc/run-mediamtx-publisher-integration.sh",
13
14
  "test:integration:webrtc-device": "bash scripts/webrtc/run-mediamtx-device-integration.sh",
14
15
  "gate:android-video-baseline": "bun scripts/webrtc/android-video-baseline-gate.ts",
15
- "lint": "eslint . --fix --pass-on-unpruned-suppressions && bun scripts/check-host-shell-boundary.ts && bash scripts/check-no-new-direct-simctl.sh && bun scripts/check-no-direct-plutil.ts && bash scripts/check-no-new-direct-xcodebuild.sh && bash scripts/check-no-new-direct-security.sh && bash scripts/check-no-new-direct-git-metadata.sh && bash scripts/check-no-local-shell-quote.sh && bash scripts/check-app-bundle-metadata-boundary.sh && bash scripts/check-ffmpeg-execution-boundary.sh && bash scripts/check-simulator-tcc-sqlite-boundary.sh && bash scripts/check-daemon-launcher-boundary.sh",
16
- "lint:prune": "eslint . --prune-suppressions",
17
- "lint:baseline": "eslint . --suppress-rule max-depth --suppress-rule complexity --suppress-rule max-nested-callbacks --suppress-rule auto-mobile/no-accumulator-foreach",
16
+ "lint": "oxlint --fix && bash scripts/oxlint-baseline.sh && bash scripts/check-boundaries.sh",
17
+ "check:boundaries": "bash scripts/check-boundaries.sh",
18
+ "lint:prune": "bash scripts/oxlint-baseline.sh --update",
19
+ "lint:baseline": "bash scripts/oxlint-baseline.sh --update",
20
+ "format": "oxfmt",
21
+ "format:check": "oxfmt --check",
18
22
  "typecheck": "bash scripts/typecheck-baseline.sh",
19
23
  "typecheck:update": "bash scripts/typecheck-baseline.sh --update",
20
24
  "watch": "bun --watch src/index.ts",
@@ -33,6 +37,8 @@
33
37
  "profile:memory": "bun --expose-gc --inspect scripts/detect-memory-leaks.ts --mode=profile",
34
38
  "profile:heap": "bun --expose-gc --heap-prof scripts/stress-test.ts",
35
39
  "validate:yaml": "bun scripts/validate-yaml.ts",
40
+ "validate:ios-continuity": "bun scripts/validate-ios-simulator-continuity.ts",
41
+ "check:bun-version-coherence": "bun scripts/check-bun-version-coherence.ts",
36
42
  "check:stdlib-first": "bash scripts/check-stdlib-first.sh",
37
43
  "check:host-shell-boundary": "bun scripts/check-host-shell-boundary.ts",
38
44
  "check:shell-quote-boundary": "bash scripts/check-no-local-shell-quote.sh",
@@ -55,11 +61,14 @@
55
61
  "turbo:validate": "turbo run lint build test check:android-emulator-boundary check:ffmpeg-boundary check:host-shell-boundary check:ios-ctrl-proxy-process-boundary",
56
62
  "turbo:build": "turbo run build",
57
63
  "turbo:lint": "turbo run lint",
58
- "turbo:test": "turbo run test"
64
+ "turbo:test": "turbo run test",
65
+ "turbo:typecheck": "turbo run typecheck",
66
+ "turbo:gate": "turbo run lint build typecheck --output-logs=errors-only",
67
+ "loop": "bash scripts/validate-loop.sh"
59
68
  },
60
- "packageManager": "bun@1.3.6",
69
+ "packageManager": "bun@1.3.14",
61
70
  "engines": {
62
- "bun": ">=1.3.6"
71
+ "bun": ">=1.3.14"
63
72
  },
64
73
  "keywords": [
65
74
  "adb",
@@ -131,9 +140,6 @@
131
140
  "qs": "^6.14.2",
132
141
  "@ts-morph/common": {
133
142
  "minimatch": "3.1.5"
134
- },
135
- "eslint-plugin-import": {
136
- "minimatch": "3.1.5"
137
143
  }
138
144
  },
139
145
  "optionalDependencies": {
@@ -163,19 +169,19 @@
163
169
  },
164
170
  "devDependencies": {
165
171
  "@faker-js/faker": "^10.2.0",
166
- "@stylistic/eslint-plugin": "^5.7.0",
167
172
  "@types/js-yaml": "^4.0.9",
168
173
  "@types/node": "^26.0.0",
169
174
  "@types/pixelmatch": "^5.2.6",
170
175
  "@types/pngjs": "^6.0.5",
171
176
  "@types/ws": "^8.18.1",
172
177
  "@types/xml2js": "^0.4.14",
173
- "@typescript-eslint/eslint-plugin": "^8.53.0",
174
- "@typescript-eslint/parser": "^8.53.0",
175
- "eslint": "^10.0.0",
176
- "eslint-plugin-import": "^2.31.0",
178
+ "@typescript/native-preview": "7.0.0-dev.20260707.2",
177
179
  "fast-check": "^4.9.0",
178
180
  "knip": "^6.0.0",
181
+ "oxc-parser": "0.143.0",
182
+ "oxfmt": "0.62.0",
183
+ "oxlint": "1.77.0",
184
+ "oxlint-tsgolint": "7.0.2001",
179
185
  "ts-prune": "^0.10.3",
180
186
  "tsx": "^4.21.0",
181
187
  "turbo": "^2.8.10",