-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.21 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.21 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
{
"name": "code-search-mcp",
"version": "1.0.0",
"description": "Universal MCP server for code search across any programming language",
"type": "module",
"main": "dist/index.js",
"bin": {
"code-search-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc && npm run copy-assets",
"copy-assets": "node -e \"require('fs').cpSync('src/stacks.json', 'dist/stacks.json')\"",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
"test:integration": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --testMatch='**/tests/integration/**/*.test.ts'",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"code-search",
"ctags",
"ripgrep",
"language-server"
],
"author": "GhostTypes",
"license": "MIT",
"dependencies": {
"@ast-grep/lang-bash": "^0.0.4",
"@ast-grep/lang-c": "^0.0.3",
"@ast-grep/lang-cpp": "^0.0.3",
"@ast-grep/lang-csharp": "^0.0.3",
"@ast-grep/lang-go": "^0.0.3",
"@ast-grep/lang-java": "^0.0.4",
"@ast-grep/lang-json": "^0.0.4",
"@ast-grep/lang-kotlin": "^0.0.4",
"@ast-grep/lang-python": "^0.0.3",
"@ast-grep/lang-rust": "^0.0.4",
"@ast-grep/lang-scala": "^0.0.4",
"@ast-grep/lang-swift": "^0.0.5",
"@ast-grep/lang-tsx": "^0.0.4",
"@ast-grep/lang-typescript": "^0.0.4",
"@ast-grep/lang-yaml": "^0.0.3",
"@ast-grep/napi": "^0.40.0",
"@LLMTooling/universal-ctags-node": "^0.1.0",
"@modelcontextprotocol/sdk": "^1.0.4",
"@vscode/ripgrep": "^1.17.0",
"fast-glob": "^3.3.2",
"toml": "^3.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"simple-git": "^3.27.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"engines": {
"node": ">=18.0.0"
}
}