-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.53 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.53 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
{
"name": "overtooled-mcp",
"version": "1.0.0",
"description": "MCP server for local file conversion - images, audio, video, documents, and data formats. Privacy-first, everything runs locally.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"overtooled-mcp": "./dist/bin/overtooled-mcp.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run test"
},
"keywords": [
"mcp",
"model-context-protocol",
"file-conversion",
"converter",
"ai-tools",
"claude",
"cursor"
],
"author": "Hunter Graves",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ChefJulio/overtooled-mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"fast-xml-parser": "^4.5.0",
"ffprobe-static": "^3.1.0",
"js-yaml": "^4.1.0",
"mammoth": "^1.8.0",
"pdfjs-dist": "^4.0.0",
"pdfkit": "^0.15.0",
"smol-toml": "^1.3.0",
"which": "^4.0.0",
"xlsx": "^0.18.0",
"zod": "^3.23.0"
},
"optionalDependencies": {
"canvas": "^2.11.0",
"ffmpeg-static": "^5.0.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.0",
"@types/pdfkit": "^0.17.5",
"@types/which": "^3.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}