-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 872 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
{
"name": "convert2mermaid",
"version": "1.0.0",
"description": "Convert diagrams from other formats into mermaidJs syntax",
"license": "MIT",
"type": "module",
"author": "Justin Greywolf <[email protected]>",
"scripts": {
"build": "npx tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"convert2mermaid": "./dist/index.js"
},
"dependencies": {
"@inquirer/prompts": "^6.0.1",
"adm-zip": "^0.5.16",
"commander": "^12.1.0",
"cspell": "^8.15.2",
"figlet": "^1.7.0",
"ora": "^8.1.0",
"vite": "^5.4.9",
"vitest": "^2.1.3",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/figlet": "^1.5.8",
"@types/node": "^22.7.4",
"@types/xml2js": "^0.4.14",
"esbuild": "0.24.0",
"globals": "^15.10.0",
"typescript": "^5.6.2"
}
}