@kaeawc/auto-mobile 0.0.6

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 ADDED
@@ -0,0 +1,109 @@
1
+ {
2
+ "name": "@kaeawc/auto-mobile",
3
+ "version": "0.0.6",
4
+ "description": "Mobile device interaction automation via MCP",
5
+ "scripts": {
6
+ "test": "bun test",
7
+ "test:coverage": "bun test --coverage",
8
+ "lint": "eslint . --fix",
9
+ "watch": "bun --watch src/index.ts",
10
+ "build": "bun build.ts && chmod +x dist/src/index.js",
11
+ "clean": "rm -rf dist",
12
+ "start": "bun run src/index.ts --transport streamable",
13
+ "dev": "bun --watch src/index.ts --transport streamable",
14
+ "dev:port": "bun --watch src/index.ts --transport streamable --port",
15
+ "dev:stdio": "bun run src/index.ts",
16
+ "dev:sse": "bun --watch src/index.ts --transport sse",
17
+ "dev:streamable": "bun --watch src/index.ts --transport streamable",
18
+ "dev:streamable:port": "bun --watch src/index.ts --transport streamable --port",
19
+ "prepublishOnly": "cp README.md README.md.backup && bun scripts/npm/transform-readme.js",
20
+ "postpublish": "mv README.md.backup README.md || true"
21
+ },
22
+ "packageManager": "bun@1.3.5",
23
+ "engines": {
24
+ "bun": ">=1.3.5"
25
+ },
26
+ "keywords": [
27
+ "adb",
28
+ "android",
29
+ "auto-mobile",
30
+ "automation",
31
+ "bridge",
32
+ "debug",
33
+ "mcp",
34
+ "mobile",
35
+ "ui-testing"
36
+ ],
37
+ "files": [
38
+ "dist"
39
+ ],
40
+ "main": "dist/src/index.js",
41
+ "bin": {
42
+ "auto-mobile": "dist/src/index.js"
43
+ },
44
+ "author": "Jason Pearson",
45
+ "license": "Apache-2.0",
46
+ "contributors": [
47
+ {
48
+ "name": "Jason Pearson",
49
+ "email": "jason.d.pearson@gmail.com"
50
+ }
51
+ ],
52
+ "homepage": "https://kaeawc.github.io/auto-mobile/",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "https://github.com/kaeawc/auto-mobile.git"
56
+ },
57
+ "publishConfig": {
58
+ "access": "public"
59
+ },
60
+ "dependencies": {
61
+ "@anthropic-ai/sdk": "^0.71.2",
62
+ "@huggingface/transformers": "^3.8.1",
63
+ "@modelcontextprotocol/sdk": "^1.22.0",
64
+ "@types/js-yaml": "^4.0.9",
65
+ "@types/uuid": "^11.0.0",
66
+ "@types/ws": "^8.18.1",
67
+ "async-mutex": "^0.5.0",
68
+ "fs-extra": "^11.3.2",
69
+ "glob": "^11.1.0",
70
+ "jimp": "^1.6.0",
71
+ "js-yaml": "^4.1.1",
72
+ "kysely": "^0.28.9",
73
+ "onnxruntime-node": "^1.23.2",
74
+ "pixelmatch": "^7.1.0",
75
+ "pngjs": "^7.0.0",
76
+ "sharp": "^0.34.5",
77
+ "uuid": "^13.0.0",
78
+ "ws": "^8.18.3",
79
+ "xml2js": "^0.6.2",
80
+ "zod": "^3.25.76",
81
+ "zod-to-json-schema": "^3.25.0"
82
+ },
83
+ "devDependencies": {
84
+ "@eslint/eslintrc": "^3.3.1",
85
+ "@eslint/js": "^9.38.0",
86
+ "@faker-js/faker": "^10.0.0",
87
+ "@stylistic/eslint-plugin": "^5.5.0",
88
+ "@types/express": "^5.0.5",
89
+ "@types/fs-extra": "^11.0.4",
90
+ "@types/node": "^24.9.2",
91
+ "@types/pixelmatch": "^5.2.6",
92
+ "@types/pngjs": "^6.0.5",
93
+ "@types/proxyquire": "^1.3.31",
94
+ "@types/xml2js": "^0.4.14",
95
+ "@typescript-eslint/eslint-plugin": "^8.46.2",
96
+ "@typescript-eslint/parser": "^8.46.2",
97
+ "@typescript-eslint/utils": "^8.46.2",
98
+ "esbuild": "^0.25.9",
99
+ "eslint": "^9.38.0",
100
+ "eslint-plugin": "^1.0.1",
101
+ "eslint-plugin-import": "^2.31.0",
102
+ "eslint-plugin-notice": "^1.0.0",
103
+ "proxyquire": "^2.1.3",
104
+ "ts-node": "^10.9.2",
105
+ "ts-node-dev": "^2.0.0",
106
+ "tsx": "^4.20.5",
107
+ "typescript": "^5.9.2"
108
+ }
109
+ }