package.json•1.22 kB
{
"name": "lighthouse-mcp",
"version": "0.1.9",
"description": "MCP server for Google Lighthouse performance metrics",
"type": "module",
"main": "build/index.js",
"bin": {
"lighthouse-mcp": "./build/index.js"
},
"files": [
"build",
"README.md"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"dev": "tsc -w",
"prepublishOnly": "npm run build",
"update-server-json": "node -e \"const fs=require('fs');const pkg=JSON.parse(fs.readFileSync('package.json'));const server=JSON.parse(fs.readFileSync('server.json'));server.version=pkg.version;server.packages[0].version=pkg.version;fs.writeFileSync('server.json',JSON.stringify(server,null,2));\""
},
"keywords": [
"lighthouse",
"performance",
"mcp",
"audit",
"web",
"metrics",
"claude"
],
"mcpName": "io.github.priyankark/lighthouse-mcp",
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"chrome-launcher": "^0.15.2",
"lighthouse": "^12.5.1"
},
"devDependencies": {
"@types/node": "^20.4.5",
"typescript": "^5.1.6"
}
}