-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.55 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "appium-mcp",
"mcpName": "io.github.appium/appium-mcp",
"version": "1.67.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-mcp.git"
},
"bugs": {
"url": "https://github.com/appium/appium-mcp/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"appium-mcp": "dist/index.js"
},
"scripts": {
"build": "rimraf dist tsconfig.tsbuildinfo && tsc -b && chmod +x dist/index.js && npm run copy-docs",
"copy-docs": "mkdir -p dist/tools/documentation/uploads && cp -f src/tools/documentation/uploads/documents.json dist/tools/documentation/uploads/documents.json 2>/dev/null || true",
"start": "node dist/index.js",
"start:stdio": "node dist/index.js",
"start:httpStream": "node dist/index.js --httpStream",
"start:httpStream:port": "node dist/index.js --httpStream --port=",
"dev": "npx fastmcp dev src/index.js",
"inspect": "npx fastmcp inspect src/index.js",
"dev:built": "node dist/index.js",
"inspect:built": "npx @modelcontextprotocol/inspector node dist/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:locators": "NODE_OPTIONS=--experimental-vm-modules jest src/tests/generate-all-locators.test.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
"check": "npm run lint && npm run format:check",
"index-docs": "node dist/scripts/simple-index-documentation.js",
"query-docs": "node dist/scripts/simple-query-documentation.js",
"sync-version": "node scripts/sync-version.mjs",
"version": "npm run sync-version",
"zip-assets": "node scripts/zip-assets.mjs zip",
"unzip-assets": "node scripts/zip-assets.mjs unzip",
"preinstall": "node scripts/zip-assets.mjs unzip"
},
"author": "",
"license": "Apache-2.0",
"description": "Intelligent MCP server providing AI assistants with powerful tools and resources for Appium mobile automation",
"dependencies": {
"@appium/support": "^7.0.2",
"@langchain/classic": "^1.0.10",
"@langchain/core": "^1.1.17",
"@langchain/textsplitters": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.22.0",
"@xenova/transformers": "^2.17.2",
"@xmldom/xmldom": "^0.9.8",
"appium-adb": "^14.1.8",
"appium-ios-device": "^3.1.0",
"appium-uiautomator2-driver": "^7.0.0",
"appium-xcuitest-driver": "^11.0.0",
"fast-xml-parser": "^5.2.3",
"fastmcp": "^4.0.0",
"langchain": "^1.1.6",
"lodash": "^4.17.21",
"node-simctl": "^8.0.4",
"rimraf": "^6.0.1",
"webdriver": "^9.23.0",
"xpath": "^0.0.34",
"zod": "^4.3.6"
},
"devDependencies": {
"@appium/eslint-config-appium-ts": "^3.0.0",
"@jest/globals": "^30.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.17",
"@types/node": "^25.0.9",
"conventional-changelog-conventionalcommits": "^9.1.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.5.3",
"semantic-release": "^25.0.2",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
},
"files": [
"scripts",
"src",
"!src/tests",
"dist",
"CHANGELOG.md",
"README.md",
"LICENSE",
"server.json"
],
"lint-staged": {
"src/**/*.ts": [
"eslint src --fix",
"prettier --write"
],
"src/**/*.{js,json}": [
"prettier --write"
]
}
}