osx-tts-mcp/package.json

60 lines
1.2 KiB
JSON
Raw Permalink Normal View History

{
"name": "@lilith/osx-tts-mcp",
"version": "1.0.0",
"description": "MCP server for local macOS text-to-speech via the built-in `say` command",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"osx-tts-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",
"text-to-speech",
"macos",
"say",
"claude-code"
],
"author": "Lilith <quinn@ftw.codes>",
"license": "MIT",
"publishConfig": {
"registry": "http://134.199.243.61:4873/"
},
"repository": {
"type": "git",
"url": "http://134.199.243.61:3000/platform/osx-tts-mcp.git"
},
"_": {
"build": true,
"publish": true,
"registry": "cocotte-forge"
}
}