-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.66 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "typedoc-umlclass",
"type": "module",
"version": "0.10.1",
"description": "Plugin for TypeDoc that generates UML class diagrams",
"author": {
"name": "Krisztián Balla",
"url": "https://github.com/krisztianb"
},
"license": "ISC",
"keywords": [
"uml",
"typedoc",
"typedocplugin"
],
"dependencies": {
"decorator-cache-getter": "^1.0.0",
"plantuml-encoder": "^1.4.0",
"plantuml-pipe": "^1.6.0",
"progress": "^2.0.3",
"queue-fifo": "^0.2.6"
},
"devDependencies": {
"@types/node": "20.14.10",
"@types/plantuml-encoder": "1.4.2",
"@types/progress": "2.0.7",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"cypress": "13.16.1",
"cypress-visual-regression": "5.2.2",
"eslint": "8.57.1",
"eslint-plugin-jsdoc": "50.6.0",
"eslint-plugin-ordered-imports": "0.6.0",
"eslint-plugin-unicorn": "56.0.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"typedoc": "0.27.4",
"typescript": "5.6.3"
},
"peerDependencies": {
"typedoc": "0.24.x || 0.25.x || ^0.26.5 || 0.27.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krisztianb/typedoc-umlclass.git"
},
"main": "dist/index.js",
"files": [
"/dist",
"CHANGELOG.md"
],
"scripts": {
"lint": "eslint ./src ./test",
"format": "prettier --check ./src ./test",
"build": "rimraf dist && tsc",
"test": "cd test && node prepare_test.js && node test.js"
}
}