-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.79 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@codecraftersllc/local-voice-mcp",
"version": "0.3.0",
"main": "dist/server.js",
"mcpName": "io.github.CodeCraftersLLC/local-voice-mcp",
"bin": {
"local-voice-mcp-server": "./dist/mcp-server.js"
},
"author": "soyboyscout",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeCraftersLLC/local-voice-mcp.git"
},
"bugs": {
"url": "https://github.com/CodeCraftersLLC/local-voice-mcp/issues"
},
"homepage": "https://github.com/CodeCraftersLLC/local-voice-mcp#readme",
"scripts": {
"test": "npx jest",
"build": "tsc",
"start": "ts-node src/server.ts",
"start:mcp": "npm run build && node dist/mcp-server.js",
"dev:mcp": "ts-node src/mcp-server.ts",
"dev:http": "MCP_MODE=http ts-node src/mcp-server.ts",
"prepublishOnly": "npm test && npm run build",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"keywords": [
"mcp",
"tts",
"text-to-speech",
"voice",
"ai"
],
"license": "MIT",
"description": "Give your MCP clients the ability to speak by running local voice models",
"files": [
"dist/",
"scripts/",
"female-reference-voice.wav"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@jest/globals": "^30.0.0-beta.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.24",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.2",
"axios": "^1.9.0",
"body-parser": "^2.2.0",
"express": "^5.1.0",
"get-port": "^7.1.0",
"zod": "^3.25.42"
}
}