-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "code-orient",
"version": "1.0.0",
"description": "AI-free codebase analyzer that generates architecture overview, dependency graphs, and onboarding guides",
"main": "dist/index.js",
"bin": {
"code-orient": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"prepublishOnly": "pnpm build"
},
"keywords": [
"codebase",
"analyzer",
"architecture",
"dependency-graph",
"onboarding",
"ast",
"cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"ts-morph": "^21.0.1",
"commander": "^11.1.0",
"chalk": "^4.1.2",
"glob": "^10.3.10",
"graphviz": "^0.0.9",
"mermaid": "^10.6.1"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/glob": "^8.1.0",
"typescript": "^5.3.3",
"ts-node": "^10.9.2"
},
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac"
}