forked from sindresorhus/capture-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.09 KB
/
package.json
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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@redwerkz/capture-website",
"version": "5.0.0",
"description": "Capture screenshots of websites",
"license": "MIT",
"repository": "github:rdwz/capture-website",
"homepage": "https://github.com/rdwz/capture-website#readme",
"author": "Marc Redwerkz <redwerkz@gmail.com> (https://github.com/rdwz)",
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=18.17"
},
"scripts": {
"test": "standard && ava --timeout=10m && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"capture",
"screenshot",
"website",
"page",
"url",
"screen",
"webshot",
"puppeteer",
"chrome",
"chromium",
"image",
"png",
"jpg",
"jpeg"
],
"dependencies": {
"@cliqz/adblocker-puppeteer": "^1.26.6",
"file-url": "^4.0.0",
"puppeteer": "^21.1.1",
"tough-cookie": "^4.1.2"
},
"devDependencies": {
"ava": "^5.3.1",
"create-test-server": "^3.0.1",
"delay": "^6.0.0",
"image-size": "^1.0.2",
"is-jpg": "^3.0.0",
"is-png": "^3.0.1",
"pify": "^6.1.0",
"png-js": "^1.0.0",
"standard": "^17.1.0",
"tempy": "^3.1.0",
"tsd": "^0.29.0"
}
}