-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "say-mcp-server",
"version": "0.1.0",
"description": "MCP server for macOS text-to-speech functionality",
"type": "module",
"main": "build/index.js",
"bin": {
"say-mcp-server": "build/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "node build/index.js",
"dev": "tsc -w",
"prepare": "npm run build"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"text-to-speech",
"tts",
"macos",
"say",
"speech"
],
"author": {
"name": "Barton Rhodes",
"email": "barton@vibes.lol",
"url": "https://github.com/bmorphism"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bmorphism/say-mcp-server.git"
},
"bugs": {
"url": "https://github.com/bmorphism/say-mcp-server/issues"
},
"homepage": "https://github.com/bmorphism/say-mcp-server#readme",
"engines": {
"node": ">=14.0.0"
},
"os": ["darwin"],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.1.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"typescript": "^4.7.4"
}
}