-
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.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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": "pixelslop",
"version": "0.3.1",
"description": "Browser-first design quality scanner. Opens real pages in Playwright, measures actual pixels, catches AI slop patterns.",
"private": false,
"type": "module",
"license": "Apache-2.0",
"bin": {
"pixelslop": "./bin/pixelslop.mjs"
},
"files": [
"bin/",
"dist/",
"README.md",
"LICENSE",
"NOTICE"
],
"scripts": {
"test": "node --test tests/*.test.js",
"validate": "node --test tests/resource-validation.test.js",
"test:detection": "node --test tests/slop-detection.test.js",
"test:format": "node --test tests/report-format.test.js",
"test:checkpoint": "node --test tests/checkpoint.test.js",
"test:tools": "node --test tests/tools.test.js",
"test:plan": "node --test tests/plan-format.test.js",
"test:orchestrator": "node --test tests/orchestrator.test.js",
"test:installer": "node --test tests/installer.test.js",
"test:persona": "node --test tests/persona.test.js",
"test:evaluator": "node --test tests/evaluator.test.js",
"test:interaction": "node --test tests/interaction-substrate.test.js"
},
"dependencies": {
"playwright-core": "^1.58.2"
},
"author": "Gabi (Booplex)",
"repository": {
"type": "git",
"url": "https://github.com/gabelul/pixelslop"
},
"keywords": [
"design-review",
"design-quality",
"design-lint",
"ai-slop",
"visual-testing",
"browser-testing",
"playwright",
"accessibility",
"wcag",
"contrast-checker",
"responsive-design",
"css-audit",
"ui-testing",
"claude-code",
"codex-cli",
"design-automation"
],
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/gabelul/pixelslop#readme",
"bugs": {
"url": "https://github.com/gabelul/pixelslop/issues"
}
}