M1: initial scaffold — pipeline, specs, source, Dockerfile

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Paul O'Reilly
2026-04-17 23:52:40 +12:00
commit 8584def154
22 changed files with 1413 additions and 0 deletions

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "website-evaluator",
"version": "1.0.0",
"type": "module",
"description": "Website audit tool producing Claude-readable Markdown reports",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "node --check src/*.js"
},
"dependencies": {
"chrome-launcher": "^1.1.2",
"lighthouse": "^12.2.1",
"playwright": "^1.44.0"
},
"engines": {
"node": ">=20"
}
}