-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.76 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
68
{
"name": "@shantur/jarvis-mcp",
"version": "1.0.1",
"description": "Jarvis MCP – Browser-based voice input/output for AI Assistant conversations via MCP (Model Context Protocol)",
"main": "dist/index.js",
"type": "module",
"bin": {
"jarvis-mcp": "dist/cli.js"
},
"scripts": {
"build": "npm run build:plugin && npm run build:main && npm run postbuild",
"build:main": "tsc",
"build:plugin": "cd opencode-plugin && npm run build && cd .. && node create-bundle.cjs",
"build:plugin-only": "cd opencode-plugin && npm run build",
"postbuild": "chmod +x dist/cli.js",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"mcp": "node dist/index.js",
"clean": "rm -rf dist && rm -rf opencode-plugin/dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"voice",
"browser",
"speech",
"ai",
"assistant",
"tts",
"stt"
],
"author": "Jarvis MCP Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@opencode-ai/plugin": "^0.10.3",
"@opencode-ai/sdk": "^0.10.3",
"cors": "^2.8.5",
"dompurify": "^3.2.7",
"express": "^4.19.0",
"marked": "^16.3.0",
"open": "^10.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.0",
"@types/express": "^4.17.0",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shantur/jarvis-mcp.git"
},
"bugs": {
"url": "https://github.com/shantur/mcp-voice-interface/issues"
},
"homepage": "https://github.com/shantur/mcp-voice-interface#readme",
"files": [
"dist/**/*",
"public/**/*",
"opencode-plugin/**/*",
"README.md",
"package.json"
]
}