-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
44
45
46
47
48
{
"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": "jest",
"test:watch": "jest --watch"
},
"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": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.8.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.2.2"
}
}