-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.51 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.51 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
{
"name": "@aaswe/42context-engine",
"version": "3.0.4",
"description": "AI-powered code search ",
"type": "module",
"main": "dist/src/core/main.js",
"bin": {
"42context": "dist/src/cli/cli-main.js",
"context-search": "dist/src/cli/cli-main.js"
},
"scripts": {
"build": "node scripts/generate-version.js && tsc",
"build:watch": "tsc --watch",
"start": "node dist/src/core/main.js",
"cli": "node --expose-gc dist/src/cli/cli-main.js",
"dev": "tsc && node --watch dist/src/core/main.js",
"dev:cli": "node --expose-gc --loader tsx src/cli/cli-main.ts",
"test": "tsc && node --test dist/test/*.js",
"test:watch": "tsc && node --test --watch",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"semantic-search",
"code-analysis",
"dspy",
"llm-judgment",
"ai-code-search",
"vector-search",
"tree-sitter"
],
"author": "Assah Bismark, Ogen Bertrand",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AssahBismarkabah/42context.git"
},
"homepage": "https://github.com/AssahBismarkabah/42context",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"docker-compose.yml",
"mcp-config.json",
"README.md",
"LICENSE",
"chroma-42context/Dockerfile",
"chroma-42context/package.json",
"chroma-42context/package-lock.json",
"chroma-42context/tsconfig.json",
"chroma-42context/vite.config.ts",
"chroma-42context/index.html",
"chroma-42context/src/",
"chroma-42context/public/",
"chroma-42context/dist/",
"!chroma-42context/node_modules/",
"!chroma-42context/dist/node_modules/",
"!**/node_modules/**"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"@types/commander": "^2.12.0",
"@types/dotenv": "^6.1.1",
"@xenova/transformers": "^2.17.2",
"chokidar": "^3.5.3",
"chromadb": "^1.10.5",
"commander": "^14.0.1",
"dotenv": "^17.2.2",
"tree-sitter": "^0.20.6",
"tree-sitter-cpp": "^0.20.5",
"tree-sitter-go": "^0.20.0",
"tree-sitter-java": "^0.20.2",
"tree-sitter-javascript": "^0.20.4",
"tree-sitter-python": "^0.20.4",
"tree-sitter-rust": "^0.20.4",
"tree-sitter-typescript": "^0.20.5",
"uuid": "^13.0.0",
"yaml": "^2.3.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/node": "^20.11.0",
"eslint": "^8.57.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}