-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.99 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@softerist/heuristic-mcp",
"version": "3.2.13",
"description": "An enhanced MCP server providing intelligent semantic code search with find-similar-code, recency ranking, and improved chunking. Fork of smart-coding-mcp.",
"type": "module",
"main": "index.js",
"bin": {
"heuristic-mcp": "index.js"
},
"files": [
"index.js",
"config.jsonc",
"mcp_config.json",
"search-configs.js",
"lib/",
"features/",
"scripts/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node --expose-gc index.js",
"dev": "node --expose-gc --watch index.js",
"test": "vitest run",
"test:watch": "vitest",
"clean": "node scripts/clear-cache.js",
"lint": "eslint .",
"format": "prettier --write .",
"postinstall": "node scripts/postinstall.js && node scripts/download-model.js"
},
"keywords": [
"mcp",
"semantic-search",
"code-search",
"embeddings",
"ai",
"model-context-protocol",
"hybrid-search",
"code-intelligence",
"cursor",
"vscode",
"claude",
"codex",
"openai",
"gemini",
"anthropic",
"antigravity",
"heuristic"
],
"author": {
"name": "Softerist",
"url": "https://github.com/softerist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/softerist/heuristic-mcp.git"
},
"homepage": "https://github.com/softerist/heuristic-mcp#readme",
"license": "MIT",
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@modelcontextprotocol/sdk": "^1.0.4",
"better-sqlite3": "^12.6.2",
"chokidar": "^3.5.3",
"fdir": "^6.5.0",
"ignore": "^7.0.5",
"punycode": "^2.3.1"
},
"optionalDependencies": {
"hnswlib-node": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"punycode": "^2.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"globals": "^17.1.0",
"prettier": "^3.8.1",
"vitest": "^4.0.16"
}
}