speech-synthesis-mcp/package.json

55 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@lilith/speech-synthesis-mcp",
"version": "1.0.1",
"description": "MCP server for the Chatterbox TTS speech-synthesis service",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"speech-synthesis-mcp": "./dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"typescript": "^5.7.0",
"vitest": "^2.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"tts",
"speech-synthesis",
"chatterbox",
"claude-code"
],
"author": "Lilith <quinn@ftw.codes>",
"license": "MIT",
"publishConfig": {
"registry": "http://npm.black.lan/"
},
"_": {
"build": true,
"publish": true,
"registry": "forgejo"
}
}