forked from omar-haris/smart-coding-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.48 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.48 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
{
"name": "smart-coding-mcp",
"version": "2.0.0",
"description": "An extensible MCP server that enhances coding productivity with AI-powered features including semantic code search, intelligent indexing, and more, using local LLMs",
"type": "module",
"main": "index.js",
"bin": {
"smart-coding-mcp": "index.js"
},
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"test": "vitest run",
"test:watch": "vitest",
"clear-cache": "node scripts/clear-cache.js"
},
"keywords": [
"mcp",
"semantic-search",
"code-search",
"embeddings",
"ai",
"model-context-protocol",
"hybrid-search",
"code-intelligence",
"cursor",
"vscode",
"claude",
"codex",
"openai",
"gemini",
"anthropic"
],
"author": {
"name": "Omar Haris",
"url": "https://www.linkedin.com/in/omarharis/"
},
"repository": {
"type": "git",
"url": "https://github.com/omar-haris/smart-coding-mcp.git"
},
"bugs": {
"url": "https://github.com/omar-haris/smart-coding-mcp/issues"
},
"homepage": "https://github.com/omar-haris/smart-coding-mcp#readme",
"license": "MIT",
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@modelcontextprotocol/sdk": "^1.0.4",
"chokidar": "^3.5.3",
"fastembed": "^2.1.0",
"fdir": "^6.5.0",
"glob": "^10.3.10",
"web-tree-sitter": "^0.24.6"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"vitest": "^4.0.16"
}
}