-
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) · 920 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 920 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/viewcap",
"version": "0.1.2",
"description": "MCP screenshot server for Claude Code — Vision-optimized page capture with automatic tiling",
"type": "module",
"main": "src/server.js",
"bin": {
"viewcap": "src/restart.js"
},
"scripts": {
"start": "node src/server.js",
"dev": "node src/server.js --allow-js",
"test": "node --test test/*.test.js"
},
"files": [
"src/",
"README.md"
],
"engines": {
"node": ">=18"
},
"keywords": [
"mcp",
"screenshot",
"puppeteer",
"claude",
"vision"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ICJIA/viewcap-mcp.git"
},
"dependencies": {
"@cfworker/json-schema": "^4.1.1",
"@modelcontextprotocol/server": "^2.0.0-alpha.2",
"commander": "^14.0.3",
"puppeteer": "^24.40.0",
"sharp": "^0.34.5",
"zod": "^4.3.6"
}
}