forked from SawyerHood/dev-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 929 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 929 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
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "dev-browser",
"version": "0.2.2",
"description": "CLI for controlling browsers with sandboxed JavaScript scripts",
"type": "module",
"bin": {
"dev-browser": "./bin/dev-browser.js"
},
"scripts": {
"postinstall": "node scripts/postinstall.js",
"version:sync": "node scripts/sync-version.js",
"version": "npm run version:sync && git add cli/Cargo.toml cli/Cargo.lock .claude-plugin/marketplace.json"
},
"files": [
"bin/",
"scripts/",
"daemon/dist/",
"README.md",
"LICENSE"
],
"dependencies": {
"playwright": "^1.52.0",
"playwright-core": "^1.52.0",
"quickjs-emscripten": "^0.32.0"
},
"keywords": [
"browser",
"automation",
"playwright",
"cli",
"sandbox",
"quickjs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SawyerHood/dev-browser.git"
},
"author": "Sawyer Hood"
}