-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 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
{
"name": "sessionsnap",
"version": "0.1.1",
"description": "Capture and reuse authenticated browser sessions (Puppeteer + Playwright)",
"type": "module",
"homepage": "https://github.com/litepacks/sessionsnap#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/litepacks/sessionsnap.git"
},
"bugs": {
"url": "https://github.com/litepacks/sessionsnap/issues"
},
"bin": {
"sessionsnap": "./bin/sessionsnap.js"
},
"scripts": {
"test": "node --test test/*.test.js",
"test:e2e": "node --test e2e/test.js",
"test:e2e:docker": "docker compose -f e2e/docker-compose.yml up --build --abort-on-container-exit --exit-code-from e2e",
"test:all": "node --test test/*.test.js && node --test e2e/test.js"
},
"dependencies": {
"better-sqlite3": "^11.10.0",
"commander": "^12.1.0",
"css-selector-generator": "^3.8.0",
"knex": "^3.1.0",
"puppeteer-core": "^24.2.1"
},
"optionalDependencies": {
"@faker-js/faker": "^9.9.0"
},
"peerDependencies": {
"playwright": ">=1.40.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT"
}