package.json•1.09 kB
{
"name": "srt-translation-mcp-server",
"version": "1.0.0",
"description": "MCP server for SRT subtitle file processing and translation",
"main": "dist/index.js",
"type": "module",
"bin": {
"srt-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"mcp",
"srt",
"subtitle",
"translation",
"model-context-protocol"
],
"author": "SRT-MCP Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"franc": "^6.2.0",
"node-html-parser": "^6.1.12",
"srt-parser-2": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}