-
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.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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": "bruniai",
"version": "0.1.20",
"type": "module",
"description": "AI-powered visual regression testing tool",
"author": "Joao Garin",
"license": "MIT",
"workspaces": [
"packages/*",
"apps/*"
],
"overrides": {
"ajv": "8.18.0",
"basic-ftp": "5.2.2",
"brace-expansion": "2.0.3",
"glob": "10.5.0",
"jws": "4.0.1",
"langsmith": "0.4.6",
"minimatch": "9.0.9"
},
"scripts": {
"build": "rm -rf images dist tsconfig.tsbuildinfo && tsc",
"build:mcp": "npm --prefix packages/mcp-server run build",
"dev": "tsx src/index.ts",
"dev:mcp": "npm --prefix packages/mcp-server run dev",
"dev:mcp-vercel": "npm --prefix apps/mcp-vercel run dev",
"start": "node dist/index.js",
"test": "vitest --run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"deploy": "node scripts/deploy.js",
"deploy:dry-run": "node scripts/deploy.js --dry-run",
"release": "node scripts/release.js",
"release:dry-run": "node scripts/release.js --dry-run"
},
"dependencies": {
"@sparticuz/chromium": "^138.0.2",
"@browserbasehq/stagehand": "^3.2.1",
"openai": "^4.77.0",
"@playwright/mcp": "^0.0.70",
"dotenv": "^16.0.0",
"pixelmatch": "^7.1.0",
"playwright": "^1.59.1",
"pngjs": "^7.0.0",
"sharp": "^0.34.5",
"uuid": "^10.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^20.11.24",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"tsx": "^4.7.0",
"typescript": "^5.5.4",
"vitest": "^4.1.4"
}
}