-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
45 lines (45 loc) · 979 Bytes
/
package.json
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
{
"name": "tsuml2",
"version": "0.17.0",
"description": "UML diagrams for TypeScript",
"main": "dist/lib/index.js",
"bin": {
"tsuml2": "dist/bin/index.js"
},
"devDependencies": {
"@types/node": "^20.12.11",
"@types/yargs": "^17.0.32",
"typescript": "^5.4.5"
},
"dependencies": {
"chalk": "^4.1.2",
"nomnoml": "^1.6.2",
"ts-morph": "^22.0.0",
"yargs": "^17.7.2"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demike/TsUML2.git"
},
"keywords": [
"typescript",
"uml",
"diagram",
"generator",
"class"
],
"author": "Michael Derfler (based on work of Remo H. Jansen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/demike/TsUML2/issues"
},
"homepage": "https://github.com/demike/TsUML2#readme",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
]
}