{
  "name": "youtube-subtitle-mcp",
  "version": "1.1.1",
  "description": "MCP Server for fetching YouTube video subtitles/transcripts with multiple format support (SRT, VTT, TXT, JSON)",
  "type": "module",
  "bin": {
    "youtube-subtitle-mcp": "build/index.js",
    "youtube-subtitle-mcp-http": "build/httpServer.js"
  },
  "files": [
    "build"
  ],
  "scripts": {
    "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755'); try{require('fs').chmodSync('build/httpServer.js','755')}catch(e){}\"",
    "prepare": "npm run build",
    "watch": "tsc --watch",
    "dev": "node build/httpServer.js",
    "start:stdio": "node build/index.js",
    "start:http": "node build/httpServer.js"
  },
  "keywords": [
    "mcp",
    "youtube",
    "subtitles",
    "transcript",
    "captions",
    "srt",
    "vtt",
    "model-context-protocol"
  ],
  "author": "Xingyu Chen <guangxiangdebizi@gmail.com>",
  "license": "Apache-2.0",
  "homepage": "https://github.com/guangxiangdebizi/youtube-subtitle-mcp#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/guangxiangdebizi/youtube-subtitle-mcp.git"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.22.0",
    "cors": "^2.8.5",
    "dotenv": "^16.3.1",
    "express": "^4.19.2",
    "youtubei.js": "^16.0.1",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/cors": "^2.8.17",
    "@types/express": "^4.17.21",
    "@types/node": "^20.11.24",
    "typescript": "^5.3.3"
  }
}
