-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1023 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1023 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
44
45
46
47
48
{
"name": "@hvg24/umljs",
"version": "1.0.6",
"description": "Automatic UML Diagram generator for JavaScript ES6 codebases.",
"main": "./dist/umljs.bundle.cjs",
"scripts": {
"build": "webpack"
},
"bin": {
"umljs": "dist/umljs.bundle.cjs"
},
"keywords": [
"UML",
"JavaScript",
"ES6",
"UML Diagram",
"Code Visualization",
"Mermaid.js",
"Static Analysis",
"CLI Tool",
"Code Parsing",
"Automation"
],
"author": "Harsh Vardhan Gautam",
"license": "ISC",
"devDependencies": {
"@babel/traverse": "^7.27.0",
"babel-loader": "^10.0.0",
"estraverse": "^5.3.0",
"pako": "^2.1.0",
"terser-webpack-plugin": "^5.3.14",
"webpack": "^5.99.5",
"webpack-cli": "^6.0.1"
},
"files": [
"dist/umljs.bundle.cjs"
],
"type": "module",
"dependencies": {
"@sentry/node": "^9.12.0",
"axios": "^1.8.4",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"figlet": "^1.8.1",
"ora": "^8.2.0",
"sharp": "^0.34.1"
}
}