-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "catalyst",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"exec": "node ./dist/catalyst.mjs -i diagram.puml -o output.drawio",
"lint": "eslint ./src",
"lintfix": "eslint --fix ./src",
"mdlint": "markdownlint '**/*.md' --ignore node_modules --ignore slides --disable MD033 MD013 MD041"
},
"repository": {
"type": "git",
"url": "git+https://github.com/localgod/catalyst"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/localgod/catalyst/issues"
},
"homepage": "https://catalyst.mindfield.dk",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"commander": "^12.0.0",
"html-entities": "^2.5.2",
"html-minifier-terser": "^7.2.0",
"plantuml-pipe": "^1.6.0",
"unsplash-js": "^7.0.19",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/html-minifier-terser": "^7.0.2",
"@types/node": "^22.0.0",
"@types/xml2js": "^0.4.14",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"typescript-eslint": "^8.4.0"
}
}