forked from anaisbetts/mcp-youtube
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 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
{
"name": "@kazuph/mcp-youtube",
"version": "1.0.5",
"description": "Model Context Protocol server for YouTube - Extract subtitles from YouTube videos for Claude",
"author": "kazuph (https://x.com/kazuph)",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-youtube": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --apply .",
"test": "npx vitest run",
"test:watch": "npx vitest",
"test:coverage": "npx vitest run --coverage",
"start": "node dist/index.js",
"dev": "pnpm run build && pnpm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kazuph/mcp-youtube.git"
},
"keywords": [
"youtube",
"subtitles",
"mcp",
"claude",
"captions"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.1",
"rimraf": "^6.0.1",
"spawn-rx": "^4.0.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.18.6",
"@vitest/coverage-v8": "^3.2.4",
"shx": "^0.3.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}