forked from mcp-z/mcp-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.73 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@mcp-z/mcp-pdf",
"version": "2.0.7",
"description": "MCP server for creative PDF generation with full emoji, Unicode, and offline support",
"keywords": [
"pdf",
"pdfkit",
"emoji",
"unicode",
"mcp",
"ai",
"pdf generator",
"model context protocol",
"json resume",
"document generator",
"certificate",
"invoice",
"report",
"flyer",
"resume",
"color emoji",
"ai agent",
"claude"
],
"homepage": "https://github.com/mcp-z/mcp-pdf#readme",
"bugs": {
"url": "https://github.com/mcp-z/mcp-pdf/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcp-z/mcp-pdf.git"
},
"license": "MIT",
"author": "Kevin Malakoff <kmalakoff.info@gmail.com>",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"bin": "bin/server.js",
"files": [
"dist",
"bin",
"assets",
"scripts"
],
"scripts": {
"build": "tsds build",
"format": "tsds format",
"generate:types": "json2ts assets/resume.schema.json assets/resume.d.ts --bannerComment \"/* eslint-disable */\n/* Auto-generated from assets/resume.schema.json - DO NOT EDIT */\"",
"postinstall": "node scripts/postinstall.cjs",
"prepublish:check": "ncp",
"prepublishOnly": "tsds validate",
"test": "tsds test:node --no-timeouts 'test/**/*.test.ts'",
"test:engines": "nvu engines tsds test:node --no-timeouts 'test/**/*.test.ts'",
"version": "tsds version"
},
"dependencies": {
"@mcp-z/server": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"@napi-rs/canvas": "^0.1.0",
"ajv": "^8.0.0",
"ajv-formats": "^3.0.0",
"cors": "^2.0.0",
"emoji-regex": "^10.0.0",
"express": "^5.0.0",
"fontkit": "^2.0.0",
"image-size": "^2.0.0",
"liquidjs": "^10.0.0",
"mdast-util-from-markdown": "^2.0.2",
"module-root-sync": "^2.0.0",
"pdf-to-png-converter": "^3.0.0",
"pdfkit": "^0.17.0",
"pino": "^10.0.0",
"unist-util-visit": "^5.0.0",
"yoga-layout": "^3.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/fontkit": "^2.0.8",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.3",
"@types/pdfkit": "^0.17.4",
"@types/unist": "^3.0.3",
"json-schema-to-typescript": "^15.0.4",
"node-version-use": "^2.4.7",
"ts-dev-stack": "^1.22.1",
"tsds-config": "^1.0.4"
},
"engines": {
"node": ">=20"
},
"mcpName": "io.github.mcp-z/mcp-pdf",
"tsds": {
"source": "src/index.ts"
}
}