UNPKG

@t09tanaka/mcp-simple-voicevox

Version:

MCP server for VOICEVOX text-to-speech integration

75 lines (74 loc) 1.74 kB
{ "name": "@t09tanaka/mcp-simple-voicevox", "version": "0.1.0", "description": "MCP server for VOICEVOX text-to-speech integration", "type": "module", "main": "dist/index.js", "bin": { "mcp-simple-voicevox": "./dist/index.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/index.js", "lint": "eslint src/**/*.ts", "test": "jest", "format": "prettier --write .", "format:check": "prettier --check .", "prepublishOnly": "npm run lint && npm run test && npm run build", "prepare": "husky" }, "keywords": [ "mcp", "voicevox", "text-to-speech", "tts" ], "author": "", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/t09tanaka/mcp-simple-voicevox.git" }, "homepage": "https://github.com/t09tanaka/mcp-simple-voicevox#readme", "bugs": { "url": "https://github.com/t09tanaka/mcp-simple-voicevox/issues" }, "files": [ "dist", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "dependencies": { "@modelcontextprotocol/sdk": "^0.5.0", "axios": "^1.6.0" }, "devDependencies": { "@jest/globals": "^30.0.0", "@types/jest": "^30.0.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "husky": "^9.1.7", "jest": "^29.0.0", "lint-staged": "^16.1.2", "prettier": "^3.5.3", "ts-jest": "^29.4.0", "typescript": "^5.0.0" }, "engines": { "node": ">=18.0.0" }, "lint-staged": { "*.{ts,js,json,md,yml,yaml}": [ "prettier --write" ], "*.{ts,js}": [ "eslint --fix" ] } }