-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 920 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
39
{
"name": "behaviordiff",
"version": "0.1.0",
"description": "Behavioral frontend diffing for GitHub PRs",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit"
},
"keywords": [
"github-action",
"frontend",
"diff",
"playwright",
"a11y"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.0",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"dependencies": {
"@actions/artifact": "^2.1.0",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"axe-core": "^4.8.4",
"pixelmatch": "^5.3.0",
"playwright": "^1.41.0",
"pngjs": "^7.0.0"
}
}