-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.09 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.09 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
{
"name": "chrome-frame-automation",
"version": "0.1.0",
"description": "Experiment to automate controlled frames in Chrome",
"main": "index.js",
"scripts": {
"test": "bunx playwright test",
"test:debug": "bunx playwright test --debug",
"test:ui": "bunx playwright test --ui",
"test:stagehand": "bunx playwright test test/stagehand.test.js",
"install:browsers": "bunx playwright install",
"inspect-chrome": "bun run src/chrome-inspector.js",
"inspect-iwa": "bun run src/iwa-frame-inspector.js",
"control-frames": "bun run src/control-iwa-frames.js",
"find-controlled-frames": "bun run src/find-iwa-controlled-frames.js",
"find-iwa-relations": "bun run src/find-iwa-related-frames.js",
"control-webview": "bun run src/control-webview-frame.js"
},
"dependencies": {
"@anthropic-ai/claude-code": "^0.2.29",
"@browserbasehq/stagehand": "^1.13.1",
"chrome-remote-interface": "^0.33.0",
"dotenv": "^16.4.7",
"node-fetch": "^2.6.1",
"playwright": "^1.50.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@playwright/test": "^1.50.1"
}
}