-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 944 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
43
{
"name": "cgraph",
"version": "0.3.0",
"description": "Local-first code graph CLI for GHCP agent efficiency",
"bin": {
"cgraph": "./bin/cgraph.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node bin/cgraph.js",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@babel/generator": "^7.29.7",
"@babel/parser": "^7.24.0",
"@babel/traverse": "^7.29.7",
"commander": "^12.0.0",
"fast-glob": "^3.3.0",
"sql.js": "^1.11.0"
},
"devDependencies": {
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/node": "^20.0.0",
"@types/sql.js": "^1.4.11",
"typescript": "^5.4.0",
"vitest": "^4.1.7"
},
"keywords": [
"codegraph",
"code-analysis",
"ghcp",
"copilot",
"agent"
],
"license": "AGPL-3.0"
}