torrentclaw-mcp/package.json
Deivid Soto 635ad4ca42
Some checks failed
Release / release (push) Failing after 2s
chore(release): 0.2.2
2026-02-16 22:22:52 +01:00

77 lines
2 KiB
JSON

{
"name": "@torrentclaw/mcp",
"version": "0.2.2",
"description": "MCP server for TorrentClaw — search and discover movies and TV shows with torrent downloads, magnet links, streaming availability, and cast/crew metadata",
"type": "module",
"bin": {
"torrentclaw-mcp": "build/index.js"
},
"main": "./build/index.js",
"files": [
"build"
],
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build",
"prepare": "husky",
"release": "commit-and-tag-version",
"release:minor": "commit-and-tag-version --release-as minor",
"release:major": "commit-and-tag-version --release-as major"
},
"lint-staged": {
"*.{ts,js,json,md,yml,yaml}": "prettier --write"
},
"keywords": [
"mcp",
"model-context-protocol",
"torrent",
"movies",
"tv-shows",
"search",
"torrentclaw",
"claude",
"ai",
"streaming",
"magnet",
"download",
"llm",
"agent",
"media"
],
"author": "TorrentClaw (https://torrentclaw.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/torrentclaw/torrentclaw-mcp.git"
},
"homepage": "https://github.com/torrentclaw/torrentclaw-mcp#readme",
"bugs": {
"url": "https://github.com/torrentclaw/torrentclaw-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.0.18",
"commit-and-tag-version": "^12.6.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.0.0"
}
}