-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 952 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
{
"name": "mermaid-comment",
"version": "1.1.2",
"description": "您可以在您的函数中编写注释,其中包含特别标记的 Mermaid 代码,该库将生成一个 MERMAID.md 文件,可以预览该文件以显示 sequenceDiagram 图。 目前,该库仅支持 sequenceDiagram。",
"bin": {
"mc": "./bin/index.js"
},
"main": "main.ts",
"type": "module",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "https://github.com/sauron0914/mermaid-comment.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@types/node": "^18.15.13",
"rollup": "^3.20.7",
"typescript": "^5.0.4"
},
"dependencies": {
"@babel/parser": "^7.21.4",
"@tsconfig/node18": "^2.0.0",
"chalk": "^5.2.0",
"recast": "^0.22.0",
"rollup-plugin-typescript2": "^0.34.1"
}
}