-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.54 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.54 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "browser-explorer",
"version": "1.0.0",
"description": "AI-powered web browsing agent with automated test generation using Mastra and Playwright",
"main": "dist/index.js",
"bin": {
"browser-explorer": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:unit": "jest --testPathIgnorePatterns=integration --coverage",
"test:integration": "jest --testPathPattern=integration --maxWorkers=2",
"test:performance": "jest --testPathPattern=performance --maxWorkers=1",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageReporters=text-lcov",
"test:ai": "NODE_OPTIONS='--experimental-vm-modules' jest | claude --dangerously-skip-permissions",
"test:ai:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage | claude --dangerously-skip-permissions",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"lint:ai": "npm run lint | head -n 100 | claude --dangerously-skip-permissions",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"self-test": "node dist/testing/cli.js run",
"self-test:quick": "node dist/testing/cli.js quick",
"self-test:validate": "node dist/testing/cli.js validate",
"docs:build": "typedoc --out docs src/index.ts",
"prepare": "husky install || true",
"prepack": "npm run build",
"postinstall": "npx playwright install chromium || true",
"vibe": "claude --dangerously-skip-permissions",
"redis:start": "redis-server",
"redis:bg": "brew services start redis"
},
"keywords": [
"browser",
"automation",
"testing",
"playwright",
"mastra",
"ai",
"agent"
],
"author": "",
"license": "MIT",
"dependencies": {
"@ai-sdk/openai": "^1.3.23",
"@browserbasehq/sdk": "^1.3.0",
"@browserbasehq/stagehand": "^1.4.0",
"@faker-js/faker": "^9.3.0",
"@jest/globals": "^30.0.5",
"@mastra/core": "latest",
"@playwright/test": "^1.49.1",
"@types/cors": "^2.8.19",
"commander": "^12.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"joi": "^17.13.3",
"lodash": "^4.17.21",
"normalize-url": "^8.0.1",
"openai": "^5.10.2",
"p-queue": "^8.0.1",
"pg": "^8.13.1",
"playwright": "^1.49.1",
"redis": "^4.7.0",
"robots-parser": "^3.0.1",
"uuid": "^11.0.4",
"winston": "^3.17.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.5",
"@types/pg": "^8.11.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cookie-parser": "^1.4.7",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typedoc": "^0.26.11",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.0.0"
}
}