The MCP SDK v1.20.1 already includes Express 5.1.0 as a dependency, so we can use the stable Express 4.x version in our package.json without conflicts. This fixes the Docker build npm ci error where package.json and package-lock.json were out of sync.
65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"name": "@kevinwatt/yt-dlp-mcp",
|
|
"version": "0.7.0",
|
|
"description": "An MCP server implementation that integrates with yt-dlp, providing video and audio content download capabilities (e.g. YouTube, Facebook, Tiktok, etc.) for LLMs.",
|
|
"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",
|
|
"yt-dlp-mcp-http": "lib/server-http.mjs"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"README.md"
|
|
],
|
|
"main": "./lib/index.mjs",
|
|
"scripts": {
|
|
"prepare": "tsc --skipLibCheck && chmod +x ./lib/index.mjs && chmod +x ./lib/server-http.mjs",
|
|
"test": "PYTHONPATH= PYTHONHOME= node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --forceExit",
|
|
"start:http": "node lib/server-http.mjs",
|
|
"dev:http": "tsc --skipLibCheck && node lib/server-http.mjs"
|
|
},
|
|
"author": "Dewei Yen <k@funmula.com>",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./lib/index.mjs"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.20.1",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.21.2",
|
|
"express-rate-limit": "^7.5.0",
|
|
"rimraf": "^6.0.1",
|
|
"spawn-rx": "^4.0.0",
|
|
"zod": "^4.1.12"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.7.0",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^5.0.0",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.10.5",
|
|
"jest": "^29.7.0",
|
|
"shx": "^0.3.4",
|
|
"ts-jest": "^29.2.5",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.6.3"
|
|
}
|
|
}
|