-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.41 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@helvio/web-screenshot",
"version": "2.2.0",
"description": "CLI to take webpage screenshots with Puppeteer and optional Sharp crop",
"keywords": [
"screenshot",
"webpage",
"png",
"image",
"cli",
"puppeteer"
],
"main": "dist/screenshot.js",
"bin": {
"web-screenshot": "dist/screenshot.js"
},
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"build": "esbuild --bundle --external:puppeteer --external:sharp src/screenshot.ts --platform=node --outfile=dist/screenshot.js",
"lint": "biome check src test",
"format": "biome check --write src test",
"test": "tsx --test test/*.test.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"license": "ISC",
"preferGlobal": true,
"author": "Helvio Pedreschi (https://github.com/Helvio88)",
"repository": {
"type": "git",
"url": "git+https://github.com/Helvio88/web-screenshot.git"
},
"bugs": "https://github.com/Helvio88/web-screenshot/issues",
"homepage": "https://github.com/Helvio88/web-screenshot",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^14.0.0",
"puppeteer": "^24.14.0",
"sharp": "^0.34.3"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@types/node": "^22.16.5",
"esbuild": "^0.25.8",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}