-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 971 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 971 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
{
"name": "autolighthouse",
"version": "1.0.0",
"description": "Maximalist Lighthouse CI system for GitHub Actions",
"scripts": {
"build": "esbuild src/audit.ts src/report.ts --bundle --platform=node --target=node24 --outdir=dist --sourcemap",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avishj/AutoLighthouse.git"
},
"keywords": [],
"author": "Avish Jha <avish.j@pm.me>",
"license": "AGPL-3.0",
"type": "commonjs",
"bugs": {
"url": "https://github.com/avishj/AutoLighthouse/issues"
},
"homepage": "https://github.com/avishj/AutoLighthouse#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"esbuild": "^0.27.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}