package.json•1.29 kB
{
"name": "voicepeak-mcp",
"version": "0.4.2",
"description": "MCP server for VOICEPEAK text-to-speech synthesis",
"main": "dist/index.js",
"module": "src/index.ts",
"type": "module",
"bin": {
"voicepeak-mcp": "./dist/index.js"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node --banner='#!/usr/bin/env node'",
"dev": "bun run src/index.ts",
"lint": "biome check && tsc --noEmit",
"fix": "biome check --write . && tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run build",
"prepare": "husky"
},
"keywords": [
"mcp",
"voicepeak",
"text-to-speech",
"tts",
"modelcontextprotocol"
],
"author": "k2wanko",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/k2wanko/voicepeak-mcp.git"
},
"homepage": "https://github.com/k2wanko/voicepeak-mcp#readme",
"bugs": {
"url": "https://github.com/k2wanko/voicepeak-mcp/issues"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@types/bun": "latest",
"@types/node": "^24.6.2",
"husky": "^9.1.7"
},
"peerDependencies": {
"typescript": "latest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.1"
},
"files": [
"dist",
"README.md",
"README.en.md",
"package.json"
],
"engines": {
"node": ">=18.0.0"
}
}