-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 971 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 971 Bytes
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
{
"name": "@codegraph/cli",
"version": "0.1.0",
"description": "CLI for CodeGraph - parse, analyze, and query code knowledge graphs",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"codegraph": "./dist/index.js",
"cg": "./dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@codegraph/core": "workspace:*",
"@codegraph/logger": "workspace:*",
"@codegraph/plugin-nlp": "workspace:*",
"@codegraph/types": "workspace:*",
"commander": "^12.1.0",
"glob": "^10.3.10"
},
"devDependencies": {
"@types/node": "^22.12.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"files": [
"dist"
]
}