-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 750 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 750 Bytes
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
{
"name": "browser-cli",
"version": "0.3.0",
"description": "CLI-first browser automation for AI agents with JSON output and policy gates",
"main": "index.js",
"bin": {
"browser-cli": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "node tests/harness.js && node tests/read.js && node tests/contract.js && node tests/viewport.js && BROWSER_CLI_SKIP_PORT_TESTS=1 node tests/recorder.js && node tests/cdp.js",
"install-browsers": "npx playwright install chromium"
},
"keywords": [
"browser-automation",
"playwright",
"ai-agents",
"cli-tools",
"trinity-protocol",
"audit"
],
"license": "Apache-2.0",
"dependencies": {
"playwright": "^1.59.0",
"yaml": "^2.3.0"
}
}