-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 933 Bytes
/
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
{
"name": "@kimtaeyoon83/mcp-server-youtube-transcript",
"version": "0.1.1",
"description": "This is an MCP server that allows you to directly download transcripts of YouTube videos.",
"license": "MIT",
"author": "Freddie",
"homepage": "https://github.com/kimtaeyoon83/mcp-server-youtube-transcript",
"bugs": "https://github.com/kimtaeyoon83/mcp-server-youtube-transcript/issues",
"type": "module",
"access": "public",
"main": "dist/index.js",
"module": "dist/index.js",
"bin": {
"mcp-server-youtube-transcript": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"youtube-captions-scraper": "^2.0.3"
},
"devDependencies": {
"@types/node": "^20.11.24",
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}