-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.82 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
{
"name": "@mybrowsercontrol/mcp",
"version": "0.1.0",
"description": "Advanced browser automation MCP server built on Microsoft Playwright MCP foundation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mybrowsercontrol": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:unit": "jest --selectProjects unit",
"test:app": "jest --selectProjects application",
"test:integration": "jest --selectProjects integration",
"test:acceptance": "jest --selectProjects acceptance",
"test:all": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"browser",
"automation",
"playwright",
"lighthouse",
"stealth",
"ai",
"assistant"
],
"author": "satware AG <ja@satware.ai>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/satwareAG/mybrowsercontrol.git"
},
"bugs": {
"url": "https://github.com/satwareAG/mybrowsercontrol/issues"
},
"homepage": "https://github.com/satwareAG/mybrowsercontrol#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@playwright/mcp": "^0.0.41",
"@playwright/test": "^1.40.0",
"playwright": "^1.40.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.4.4",
"typescript": "^5.0.0"
}
}