-
Notifications
You must be signed in to change notification settings - Fork 498
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.72 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.72 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
{
"name": "@zilliz/claude-context-core",
"version": "0.1.3",
"description": "Core indexing engine for Claude Context",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "pnpm clean && tsc --build --force",
"dev": "tsc --watch",
"clean": "rimraf dist",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@google/genai": "^1.9.0",
"@zilliz/milvus2-sdk-node": "^2.5.10",
"faiss-node": "^0.5.1",
"fs-extra": "^11.0.0",
"glob": "^10.0.0",
"langchain": "^0.3.27",
"ollama": "^0.5.16",
"openai": "^5.1.1",
"tree-sitter": "^0.21.1",
"tree-sitter-cpp": "^0.22.0",
"tree-sitter-go": "^0.21.0",
"tree-sitter-java": "^0.21.0",
"tree-sitter-javascript": "^0.21.0",
"tree-sitter-php": "^0.23.12",
"tree-sitter-python": "^0.21.0",
"tree-sitter-c-sharp": "^0.21.0",
"tree-sitter-rust": "^0.21.0",
"tree-sitter-typescript": "^0.21.0",
"tree-sitter-scala": "^0.24.0",
"typescript": "^5.0.0",
"voyageai": "^0.0.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.0",
"@types/jest": "^30.0.0",
"@types/mock-fs": "^4.13.4",
"jest": "^30.0.0",
"mock-fs": "^5.5.0",
"ts-jest": "^29.4.0"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/zilliztech/claude-context.git",
"directory": "packages/core"
},
"license": "MIT",
"publishConfig": {
"access": "public"
}
}