-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 922 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 922 Bytes
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
{
"name": "@icjia/lightcap",
"version": "0.1.5",
"description": "MCP Lighthouse audit server for Claude Code — compressed, actionable reports optimized for Claude's context window",
"type": "module",
"main": "src/server.js",
"bin": {
"lightcap": "src/cli.js"
},
"scripts": {
"start": "node src/server.js",
"test": "node --test test/*.test.js"
},
"files": [
"src/",
"README.md"
],
"engines": {
"node": ">=18"
},
"keywords": [
"mcp",
"lighthouse",
"accessibility",
"audit",
"claude",
"wcag"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ICJIA/lightcap-mcp.git"
},
"dependencies": {
"@cfworker/json-schema": "^4.1.1",
"@modelcontextprotocol/server": "^2.0.0-alpha.2",
"chrome-launcher": "^1.2.1",
"commander": "^14.0.3",
"lighthouse": "^13.1.0",
"zod": "^4.3.6"
}
}