- Pin playwright npm to 1.59.1 to match Docker image tag - Update base image to mcr.microsoft.com/playwright:v1.59.1-jammy - Run Lighthouse desktop and mobile sequentially (parallel caused port conflict) - Switch to devtools throttling (simulate caused LanternError on localhost) - Skip browser download during npm ci (image has browsers pre-installed) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
427 B
JSON
20 lines
427 B
JSON
{
|
|
"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.59.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|