forked from Wildcard-Official/deepcontext-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.46 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
{
"name": "@wildcard-ai/deepcontext",
"version": "0.1.15",
"description": "Advanced codebase indexing and semantic search MCP server",
"mcpName": "ai.wild-card/deepcontext",
"main": "dist/standalone-mcp-integration.js",
"type": "module",
"bin": {
"deepcontext": "dist/standalone-mcp-integration.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wildcard-Official/deepcontext.git"
},
"keywords": [
"mcp",
"claude-code",
"semantic-search",
"codebase-indexing",
"ast-parsing",
"vector-search",
"jina-ai",
"turbopuffer"
],
"author": "Wildcard AI, Inc",
"license": "Apache-2.0",
"scripts": {
"start": "npm run build && node dist/standalone-mcp-integration.js",
"build": "tsc --project tsconfig.build.json && chmod +x dist/standalone-mcp-integration.js",
"dev": "tsx watch src/standalone-mcp-integration.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"tree-sitter": "^0.21.0",
"tree-sitter-javascript": "^0.21.0",
"tree-sitter-python": "^0.21.0",
"tree-sitter-typescript": "^0.23.2"
},
"devDependencies": {
"@jirutka/ajv-cli": "^6.0.0",
"@types/node": "^20.0.0",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
},
"files": [
"dist/**/*",
"README.md",
"background-indexing-worker.mjs"
],
"publishConfig": {
"access": "public"
}
}