-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.96 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.96 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
{
"name": "@wdio/mcp",
"mcpName": "io.github.webdriverio/mcp",
"author": "Vince Graics",
"repository": {
"type": "git",
"url": "git://github.com/webdriverio/mcp.git"
},
"version": "3.2.5",
"description": "MCP server with WebdriverIO for browser and mobile app automation (iOS/Android via Appium)",
"main": "./lib/server.js",
"module": "./lib/server.js",
"types": "./lib/server.d.ts",
"exports": {
".": {
"import": "./lib/server.js",
"types": "./lib/server.d.ts"
},
"./snapshot": {
"import": "./lib/snapshot.js",
"types": "./lib/snapshot.d.ts"
}
},
"bin": {
"wdio-mcp": "lib/server.js"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"lib",
"README.md"
],
"scripts": {
"prebundle": "rimraf lib --glob ./*.tgz",
"bundle": "tsup && shx chmod +x lib/server.js",
"postbundle": "npm pack",
"lint": "eslint src/ tests/ --fix && tsc --noEmit",
"start": "node lib/server.js",
"dev": "tsx --watch src/server.ts",
"prepare": "husky",
"test": "vitest run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@toon-format/toon": "^2.1.0",
"@wdio/protocols": "^9.27.0",
"@xmldom/xmldom": "^0.8.12",
"browserstack-local": "^1.5.12",
"puppeteer-core": "^24.40.0",
"sharp": "^0.34.5",
"webdriverio": "^9.27.0",
"xpath": "^0.0.34",
"zod": "^4.3.6"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.6",
"@types/node": "^20.19.37",
"@wdio/eslint": "^0.1.3",
"@wdio/types": "^9.27.0",
"eslint": "^9.39.4",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"release-it": "^19.2.4",
"rimraf": "^6.1.3",
"shx": "^0.4.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"overrides": {
"release-it>undici": "^6.24.0"
}
}
}