-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 957 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 957 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",
"version": "0.1.0",
"description": "CLI tool for analyzing TypeScript/NestJS codebases and generating documentation",
"type": "module",
"main": "dist/cli.js",
"bin": {
"codegraph": "dist/cli.js"
},
"scripts": {
"build": "tsc && cp -r src/templates dist/",
"prepare": "npm run build",
"dev": "tsc --watch",
"lint": "eslint src/",
"start": "node dist/cli.js",
"analyze": "node dist/cli.js analyze",
"check": "node dist/cli.js check"
},
"keywords": [
"typescript",
"ast",
"documentation",
"dependency-graph"
],
"author": "usman.saeed",
"license": "MIT",
"dependencies": {
"commander": "14.0.3",
"graphlib": "2.1.8",
"handlebars": "4.7.9",
"ts-morph": "28.0.0",
"zod": "4.0.15"
},
"devDependencies": {
"@types/graphlib": "2.1.12",
"@types/node": "22.0.0",
"typescript": "5.8.3"
},
"engines": {
"node": "24.14.0"
}
}