-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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
49
50
51
52
53
54
{
"name": "mcp-mermaid-img",
"version": "1.0.1",
"type": "module",
"description": "MCP tool for converting Mermaid diagram code to image URL or file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-mermaid-img": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x ./dist/cli.js",
"start": "node dist/cli.js",
"pub": "npm version patch && npm publish --access public"
},
"keywords": [
"mcp",
"mermaid",
"diagram",
"image",
"converter",
"claude",
"anthropic"
],
"author": {
"name": "Jason",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/gkctou/mcp-mermaid-img"
},
"bugs": {
"url": "https://github.com/gkctou/mcp-mermaid-img/issues"
},
"homepage": "https://github.com/gkctou/mcp-mermaid-img#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.3",
"js-base64": "^3.7.7",
"pako": "^2.1.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.3"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/pako": "^2.0.3",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}