-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "auto-pr-screenshots",
"version": "1.1.0",
"description": "GitHub Action to automatically capture and post screenshots to PRs",
"main": "dist/index.js",
"packageManager": "pnpm@10.18.1",
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"test": "jest",
"test:local": "tsx scripts/dev-test/test-local.ts",
"lint": "biome check .",
"format": "biome format --write .",
"check": "biome check . && tsc --noEmit",
"prepare": "husky"
},
"keywords": [
"github",
"actions",
"screenshots",
"playwright",
"testing",
"visual"
],
"author": "Yoav Farhi",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.2",
"debug": "^4.3.6",
"playwright": "^1.56.0",
"yaml": "^2.5.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.1.2",
"ts-jest": "^29.2.5",
"tsx": "^4.7.0",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{js,ts,tsx,json,yml,yaml}": [
"biome check --write"
]
}
}