-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 754 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 754 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
{
"name": "playwright-browser-profile-manager",
"version": "1.0.0",
"description": "A local-first browser profile manager for isolated, persistent Playwright web automation sessions.",
"type": "module",
"bin": {
"browser-profile": "./src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"test": "node --test",
"check": "node --check src/cli.js && node --check src/doctor.js && node --check src/profile-store.js && node --check src/validation.js"
},
"keywords": [
"web-automation",
"browser-profile",
"playwright",
"persistent-context",
"test-automation",
"session-isolation"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"playwright": "^1.55.0"
}
}