package.json•1.33 kB
{
"name": "@shinshin86/mcp-simple-aivisspeech",
"version": "0.1.3",
"description": "MCP server for AivisSpeech text-to-speech engine",
"main": "dist/index.js",
"bin": {
"mcp-simple-aivisspeech": "dist/index.js"
},
"type": "module",
"files": [
"dist/**/*",
"LICENSE",
"README.md",
"README.ja.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"aivisspeech",
"text-to-speech",
"tts",
"voice"
],
"author": "shinshin86",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.2.0",
"@vitest/ui": "^1.2.0",
"eslint": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.8.3",
"typescript-language-server": "^4.3.4",
"vitest": "^1.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}