-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 835 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
{
"name": "wptoimage",
"version": "1.3.0",
"description": "通过puppeteer的网页截图功能实现把网页转换为图片",
"main": "index.js",
"bin": {
"wptoimage": "index.js"
},
"author": "slmev",
"repository": "slmev/wptoimage",
"keywords": [
"puppeteer",
"screenshot"
],
"files": [
"index.js",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node index.js",
"demo": "node index.js demo.html demo.png",
"test": "node --test test/*.test.js",
"test:e2e": "node --test test/*.e2e.js",
"test:all": "npm test && npm run test:e2e",
"prepublishOnly": "npm run test:all"
},
"dependencies": {
"commander": "^13.1.0",
"puppeteer": "^24.43.1",
"sharp": "^0.35.3"
}
}