-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "@markslides/markdown-it-mermaid",
"description": "Mermaid plugin for markdown-it",
"version": "0.3.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"keywords": [
"markdown",
"markdown-it",
"mermaid",
"mermaidjs"
],
"author": "Soaple <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/markslides/markdown-it-mermaid.git"
},
"bugs": {
"url": "https://github.com/markslides/markdown-it-mermaid/issues"
},
"homepage": "https://github.com/markslides/markdown-it-mermaid#readme",
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs",
"test": "echo \"Error: no test specified\" && exit 1",
"publish:public": "rm -rf dist && npm install && npm run build && npm publish --access public"
},
"dependencies": {
"mermaid": "^10.6.1"
},
"devDependencies": {
"@types/markdown-it": "^13.0.0",
"markdown-it": "^13.0.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}