-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.34 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
{
"name": "@matware/e2e-runner",
"version": "1.5.1",
"mcpName": "io.github.fastslack/e2e-runner",
"description": "E2E test runner using Chrome Pool (browserless/chrome) with parallel execution",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"bin": {
"e2e-runner": "bin/cli.js",
"e2e-runner-mcp": "bin/mcp-server.js"
},
"files": [
"bin/",
"src/",
"templates/",
".claude-plugin/",
".mcp.json",
"skills/",
"commands/",
"agents/",
".opencode/",
"opencode.json",
"OPENCODE.md",
"scripts/setup-opencode.sh"
],
"keywords": [
"e2e",
"testing",
"chrome",
"puppeteer",
"browserless",
"parallel",
"mcp",
"claude-code",
"opencode",
"github-issues",
"ai-testing"
],
"author": "Matias Aguirre (Matware)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/fastslack/mtw-e2e-runner.git"
},
"homepage": "https://github.com/fastslack/mtw-e2e-runner#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"better-sqlite3": "^11.0.0",
"puppeteer-core": "^24.0.0"
},
"scripts": {
"build:dashboard": "node templates/build-dashboard.js",
"prepublishOnly": "node templates/build-dashboard.js"
},
"engines": {
"node": ">=20.0.0"
}
}