-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.17 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
{
"name": "browser-x-mcp",
"version": "1.0.0-beta.1",
"description": "AI-Powered Browser Automation with Advanced Form Testing - A Model Context Provider (MCP) server that enables intelligent browser automation with form testing, element extraction, and comprehensive logging",
"main": "src/server/index.js",
"type": "module",
"scripts": {
"start": "node src/server/index.js",
"test": "node test/ai-mcp-interaction-test.js",
"test:ai": "node test/ai-mcp-interaction-test.js",
"test:ai:resume": "node test/ai-mcp-interaction-test.js --resume",
"test:mock": "node -e \"import('./test/ai-mcp-interaction-test.js').then(m => m.runMCPAIInteractionTest({useMockAI: true, maxIterations: 5, headless: true}))\"",
"test:report": "node test/ai-mcp-interaction-test.js --generate-report",
"test:page": "open test/input-types-test-page.html",
"dev": "node --watch src/server/index.js",
"docs": "jsdoc -c jsdoc.conf.json",
"lint": "eslint src/ test/ tools/",
"lint:fix": "eslint src/ test/ tools/ --fix",
"screenshot:analyze": "node tools/screenshot-analyzer/index.js"
},
"keywords": [
"mcp",
"browser-automation",
"ai-testing",
"form-testing",
"virtual-canvas",
"ai",
"playwright",
"browser-tools",
"model-context-provider",
"intelligent-automation",
"screenshot-analysis",
"element-extraction",
"beta"
],
"author": "RND-PRO Team <https://rnd-pro.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/rnd-pro/browser-x-mcp.git"
},
"bugs": {
"url": "https://github.com/rnd-pro/browser-x-mcp/issues"
},
"homepage": "https://github.com/rnd-pro/browser-x-mcp#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"playwright": "^1.40.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"jsdoc": "^4.0.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"files": [
"src/",
"tools/",
"examples/",
"docs/CONTRIBUTING.md",
"assets/",
"README.md",
"LICENSE",
"CHANGELOG.md",
"SECURITY.md"
],
"bin": {
"browser-x-mcp": "./src/server/index.js"
}
}