-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.7 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.7 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": "code-context-engine",
"version": "2.4.3",
"main": "dist/src/index.js",
"bin": {
"code-context-engine": "dist/bin/code-context-engine.js"
},
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc",
"start": "ts-node bin/code-context-engine.ts",
"test": "npm run build && node --test test/runtime.search.test.ts test/runtime.tasks.test.ts test/runtime.navigation.test.ts test/diffReviewContext.test.ts test/agentBundle.test.ts test/mcp.smoke.test.js",
"test:cli": "npm run build && node --test test/cliCommands.test.js",
"test:parser": "ts-node test/verify_parsing.ts"
},
"files": [
"dist/**",
"docs/**",
"assets/**",
"templates/**",
"skills/**",
"install.sh",
"README.md"
],
"keywords": [
"git",
"ai",
"code-context-engine",
"agent-runtime",
"semantic-search",
"mcp",
"code-search",
"code-understanding",
"vector-search",
"graph-database",
"cli",
"code-indexing",
"knowledge-graph"
],
"author": "mars167",
"license": "MIT",
"description": "Code Context Engine: a local runtime and thin adapter surface for agent-oriented code retrieval and context construction.",
"repository": {
"type": "git",
"url": "git+https://github.com/mars167/git-ai-cli.git"
},
"bugs": {
"url": "https://github.com/mars167/git-ai-cli/issues"
},
"homepage": "https://github.com/mars167/git-ai-cli#readme",
"engines": {
"node": ">=18"
},
"os": [
"darwin",
"linux",
"win32"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/mars167"
},
"dependencies": {
"@lancedb/lancedb": "0.22.3",
"@modelcontextprotocol/sdk": "^1.25.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.0.9",
"apache-arrow": "18.1.0",
"commander": "^14.0.2",
"fs-extra": "^11.3.3",
"glob": "^13.0.0",
"onnxruntime-node": "^1.19.2",
"simple-git": "^3.30.0",
"tar": "^7.5.3",
"tree-sitter": "^0.21.1",
"tree-sitter-c": "^0.21.4",
"tree-sitter-go": "^0.21.2",
"tree-sitter-java": "^0.21.0",
"tree-sitter-python": "^0.21.0",
"tree-sitter-rust": "^0.21.0",
"tree-sitter-typescript": "^0.21.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"zod": "^4.3.5",
"cozo-node": "^0.7.6"
},
"optionalDependencies": {
"@lancedb/lancedb-darwin-arm64": "0.22.3",
"@lancedb/lancedb-darwin-x64": "0.22.3",
"@lancedb/lancedb-linux-arm64-gnu": "0.22.3",
"@lancedb/lancedb-linux-arm64-musl": "0.22.3",
"@lancedb/lancedb-linux-x64-gnu": "0.22.3",
"@lancedb/lancedb-linux-x64-musl": "0.22.3",
"@lancedb/lancedb-win32-arm64-msvc": "0.22.3",
"@lancedb/lancedb-win32-x64-msvc": "0.22.3"
}
}