-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.54 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
{
"author": "Artiphishle <[email protected]> (https://ankhorage.com/)",
"bin": {
"ankh-uml": "index.js"
},
"bugs": {
"url": "https://github.com/artiphishle/ankh-uml/issues"
},
"engine": {
"node": "^20.11.1",
"yarn": "please-use-pnpm",
"npm": "please-use-yarn",
"pnpm": "^8.15.6"
},
"homepage": "https://github.com/artiphishle/ankh-uml#readme",
"name": "ankh-uml",
"description": "Ankhorage UML generator",
"main": "dist/bundle.js",
"keywords": [
"diagram",
"mermaid",
"plantuml",
"uml"
],
"dependencies": {
"gluegun": "^5.1.6",
"lodash": "^4.17.21",
"plantuml-parser": "^0.4.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.11",
"@types/yargs": "^17.0.32",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/artiphishle/ankh-uml.git"
},
"scripts": {
"build": "webpack --mode=development --config webpack.config.js",
"eslint:fix": "npx eslint -c .eslintrc --fix .",
"format": "pnpm run eslint:fix && pnpm run prettier:write",
"graph:git": "tsc src/tool/git/graph.ts && node src/tool/git/graph.js",
"prettier:write": "npx prettier --write .",
"start": "pnpm run build && node dist/bundle.js"
},
"version": "1.2.2"
}