-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
59
60
61
62
63
64
65
66
67
{
"name": "@mermaidchart/cli",
"version": "0.1.0",
"description": "CLI for interacting with https://MermaidChart.com, the platform that makes collaborating with Mermaid diagrams easy",
"main": "index.js",
"bin": {
"mermaid-chart": "dist/cli.js"
},
"engines": {
"node": "^18.18.0 || ^20.0.0"
},
"scripts": {
"dev": "tsx src/cli.ts",
"lint": "eslint src/ && prettier --check src/",
"lint:fix": "eslint --fix src/ && prettier --write src/",
"prepare": "tsc --build tsconfig.json",
"test": "vitest"
},
"type": "module",
"repository": {
"type": "git",
"directory": "packages/cli",
"url": "git+https://github.com/Mermaid-Chart/plugins.git"
},
"keywords": [
"mermaid",
"mermaidchart",
"cli"
],
"author": "Alois Klink <[email protected]> (https://github.com/aloisklink)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mermaid-Chart/plugins/issues"
},
"homepage": "https://github.com/Mermaid-Chart/plugins/tree/main/packages/cli#readme",
"devDependencies": {
"@cspell/eslint-plugin": "^8.0.0",
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/iarna__toml": "^2.0.5",
"@types/js-yaml": "^4.0.9",
"@types/mdast": "^4.0.3",
"@types/node": "^18.18.11",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"tsx": "^3.12.8",
"typescript": "^5.2.2",
"vfile": "^6.0.1",
"vitest": "^0.34.6"
},
"dependencies": {
"@commander-js/extra-typings": "^11.1.0",
"@iarna/toml": "^2.2.5",
"@inquirer/confirm": "^2.0.15",
"@inquirer/input": "^1.2.14",
"@inquirer/select": "^1.3.1",
"@mermaidchart/sdk": "^0.2.1-alpha.0",
"commander": "^11.1.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"to-vfile": "^8.0.0",
"unist-util-visit": "^5.0.0",
"yaml": "^2.3.4"
}
}