-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 KB
/
package.json
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
43
{
"name": "webperfect-mcp-server",
"version": "1.0.0",
"description": "An intelligent MCP server with a fully automated batch pipeline for web-ready images. Features include noise reduction, auto levels/curves, JPEG artifact removal, 4K resizing, smart sharpening with shadow/highlight enhancement, and advanced WebP conversion. Optimized compression delivers smaller files without sacrificing quality.",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"image-optimization",
"webp",
"image-processing",
"web-performance",
"batch-processing",
"image-enhancement",
"noise-reduction",
"jpeg-artifacts",
"4k-resolution"
],
"author": "splendasucks",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/splendasucks/webperfect-mcp-server.git"
},
"bugs": {
"url": "https://github.com/splendasucks/webperfect-mcp-server/issues"
},
"homepage": "https://github.com/splendasucks/webperfect-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"sharp": "^0.32.6",
"image-size": "^1.0.2"
},
"devDependencies": {
"@types/node": "^20.8.7",
"typescript": "^5.2.2"
}
}