pixel-surgeon-mcp 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "pixel-surgeon-mcp",
3
+ "version": "1.0.0",
4
+ "mcpName": "io.github.j-east/pixel-surgeon",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "bin": {
8
+ "pixel-surgeon-mcp": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "build": "tsc",
15
+ "start": "node dist/index.js",
16
+ "viewer": "node dist/index.js --viewer",
17
+ "dev": "tsx watch src/index.ts",
18
+ "prepublishOnly": "npm run build"
19
+ },
20
+ "keywords": [
21
+ "mcp",
22
+ "model-context-protocol",
23
+ "image-generation",
24
+ "image-editing",
25
+ "gemini",
26
+ "openai",
27
+ "ai",
28
+ "video-generation"
29
+ ],
30
+ "author": "John Evans",
31
+ "license": "MIT",
32
+ "description": "MCP server for AI image & video generation, editing, and region repair. Powered by Gemini and OpenAI.",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/j-east/pixel-surgeon-mcp.git"
36
+ },
37
+ "dependencies": {
38
+ "@modelcontextprotocol/sdk": "^1.27.1",
39
+ "potrace": "^2.1.8",
40
+ "sharp": "^0.34.5",
41
+ "zod": "^4.3.6"
42
+ },
43
+ "devDependencies": {
44
+ "@types/node": "^25.5.0",
45
+ "tsx": "^4.21.0",
46
+ "typescript": "^5.9.3"
47
+ }
48
+ }