-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "auditkit",
"version": "0.1.8",
"description": "Fast TypeScript CLI for clear, client-ready website audits.",
"type": "module",
"engines": {
"node": ">=24"
},
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Danilaa1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Danilaa1/auditkit.git"
},
"files": [
"LICENSE",
"README.md",
"auditkit.config.json",
"audits/.gitkeep",
"docs",
"src"
],
"bin": {
"auditkit": "src/cli.ts",
"ak": "src/cli.ts"
},
"scripts": {
"audit": "node src/cli.ts",
"audit:new": "node src/cli.ts new",
"audit:list": "node src/cli.ts list",
"audit:check": "node src/cli.ts check",
"audit:report": "node src/cli.ts report",
"audit:security": "node src/cli.ts security",
"audit:lighthouse": "node src/cli.ts lighthouse",
"audit:inspect": "node src/cli.ts inspect",
"typecheck": "tsc --noEmit",
"test": "npm run typecheck && node --test"
},
"dependencies": {
"chrome-launcher": "^1.2.1",
"lighthouse": "^13.3.0"
},
"devDependencies": {
"@types/node": "^24.13.3",
"typescript": "^7.0.2"
}
}