-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.47 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.47 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
57
58
59
60
61
62
63
64
65
{
"name": "screenshot-cli",
"version": "1.2.3",
"description": "CLI tool for taking website screenshots with before/after comparison and HTML/PDF report generation",
"keywords": [
"screenshot",
"web",
"cli",
"playwright",
"testing",
"comparison",
"before-after",
"html",
"pdf"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/refactorau/screenshot-cli.git"
},
"author": "Refactor Pty Ltd",
"license": "MIT",
"bin": {
"screenshot-cli": "./bin/screenshot-cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"capture": "node dist/index.js capture",
"compare": "node dist/index.js compare",
"generate": "node dist/index.js generate",
"clean": "rm -rf dist",
"format": "prettier --write \"**/*.{js,ts,json,md}\""
},
"files": [
"dist/**/*",
"bin/**/*",
"README.md",
"LICENSE"
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"inquirer": "^9.2.0",
"ora": "^7.0.1",
"pdfkit": "^0.17.1",
"pixelmatch": "^7.1.0",
"playwright": "^1.40.0",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@types/node": "^20.0.0",
"@types/pdfkit": "^0.14.0",
"@types/pngjs": "^6.0.5",
"prettier": "^3.6.2",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=20",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0"
}