-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.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
{
"name": "@browserstack/mcp-server",
"version": "1.2.12",
"description": "BrowserStack's Official MCP Server",
"mcpName": "io.github.browserstack/mcp-server",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/browserstack/mcp-server.git"
},
"type": "module",
"scripts": {
"build": "npm run lint && npm run format && npm test && tsc",
"start": "node dist/index.js",
"dev": "tsx watch --clear-screen=false src/index.ts",
"test": "vitest run",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"bin": {
"browserstack-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"browserstack",
"testing",
"automation"
],
"engines": {
"node": ">=18"
},
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@types/form-data": "^2.5.2",
"axios": "^1.13.2",
"browserstack-local": "^1.5.8",
"csv-parse": "^6.1.0",
"dotenv": "^17.2.3",
"form-data": "^4.0.5",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"sharp": "^0.34.5",
"uuid": "^13.0.0",
"webdriverio": "^9.21.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/csv-parse": "^1.2.5",
"@types/node": "^25.0.3",
"@types/uuid": "^11.0.0",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"vite": "^7.3.0",
"vitest": "^4.0.16"
}
}