-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "@sworddut/mcp-ffmpeg-helper",
"version": "0.1.0",
"description": "A Model Context Protocol (MCP) helper for FFmpeg video processing operations",
"type": "module",
"bin": {
"mcp-ffmpeg-helper": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"ffmpeg": "^0.0.4"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"keywords": [
"ffmpeg",
"video",
"mcp",
"model-context-protocol",
"video-processing",
"watermark",
"trim",
"convert"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/mcp-ffmpeg-helper.git"
},
"bugs": {
"url": "https://github.com/yourusername/mcp-ffmpeg-helper/issues"
},
"homepage": "https://github.com/yourusername/mcp-ffmpeg-helper#readme",
"engines": {
"node": ">=14.0.0"
}
}