-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.05 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
{
"name": "@codegraph/core",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"clean": "rm -rf dist"
},
"dependencies": {
"@codegraph/graph": "workspace:*",
"@codegraph/logger": "workspace:*",
"@codegraph/plugin-go": "workspace:*",
"@codegraph/plugin-markdown": "workspace:*",
"@codegraph/plugin-nlp": "workspace:*",
"@codegraph/plugin-python": "workspace:*",
"@codegraph/plugin-rust": "workspace:*",
"@codegraph/plugin-typescript": "workspace:*",
"@codegraph/types": "workspace:*",
"ai": "^6.0.193",
"chokidar": "5.0.0",
"fast-glob": "^3.3.3",
"glob": "^10.5.0",
"ignore": "^7.0.5",
"simple-git": "^3.36.0",
"tree-sitter": "^0.22.4",
"zod": "^3.25.76"
},
"devDependencies": {
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}