-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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": "@kevinwatt/yt-dlp-mcp",
"version": "0.6.9",
"description": "YouTube yt-dlp MCP Server - Download YouTube content via Model Context Protocol",
"keywords": [
"mcp",
"youtube",
"yt-dlp",
"dive",
"llm"
],
"homepage": "https://github.com/kevinwatt/yt-dlp-mcp#readme",
"bugs": {
"url": "https://github.com/kevinwatt/yt-dlp-mcp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinwatt/yt-dlp-mcp.git"
},
"bin": {
"yt-dlp-mcp": "lib/index.mjs"
},
"files": [
"lib",
"README.md"
],
"main": "./lib/index.mjs",
"scripts": {
"prepare": "tsc && shx chmod +x ./lib/index.mjs"
},
"author": "Dewei Yen <k@funmula.com>",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./lib/index.mjs"
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.7.0",
"rimraf": "^6.0.1",
"spawn-rx": "^4.0.0"
},
"devDependencies": {
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}