-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.63 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.63 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "aidex-mcp",
"version": "1.17.1",
"mcpName": "io.github.CSCSoftware/aidex",
"description": "MCP Server for persistent code indexing. Gives AI assistants (Claude, Gemini, Copilot, Cursor) instant access to your codebase. 50x less context than grep.",
"main": "build/index.js",
"bin": {
"aidex": "build/index.js",
"aidex-mcp": "build/index.js"
},
"type": "module",
"scripts": {
"build": "tsc && npm run copy-assets",
"copy-assets": "node -e \"const fs=require('fs');fs.cpSync('src/db/schema.sql','build/db/schema.sql');fs.cpSync('src/db/global-schema.sql','build/db/global-schema.sql')\"",
"watch": "tsc --watch",
"start": "node build/index.js",
"dev": "tsc && node build/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"clean": "rimraf build",
"postinstall": "node scripts/postinstall.mjs",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"claude",
"claude-code",
"claude-desktop",
"gemini",
"gemini-cli",
"copilot",
"github-copilot",
"vscode",
"cursor",
"windsurf",
"ai",
"ai-coding",
"ai-assistant",
"ai-tools",
"aidex",
"code-indexing",
"code-search",
"code-navigation",
"codebase",
"tree-sitter",
"sqlite",
"developer-tools",
"devtools",
"context-window",
"code-intelligence",
"code-analysis",
"identifier-search",
"method-signatures",
"cross-project"
],
"repository": {
"type": "git",
"url": "https://github.com/CSCSoftware/AiDex.git"
},
"author": "Uwe Chalas",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^11.0.0",
"chokidar": "^5.0.0",
"express": "^4.22.1",
"glob": "^10.0.0",
"highlight.js": "^11.11.0",
"minimatch": "^10.1.1",
"simple-git": "^3.27.0",
"tree-sitter": "^0.21.0",
"tree-sitter-c": "^0.21.0",
"tree-sitter-c-sharp": "^0.21.0",
"tree-sitter-cpp": "^0.22.0",
"tree-sitter-go": "^0.21.0",
"tree-sitter-java": "^0.21.0",
"tree-sitter-php": "^0.22.0",
"tree-sitter-python": "^0.21.0",
"tree-sitter-ruby": "^0.21.0",
"tree-sitter-rust": "^0.21.0",
"tree-sitter-typescript": "^0.21.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/express": "^4.17.25",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/ws": "^8.18.1",
"jest": "^29.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}