-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "@agoose77/markdown-it-mermaid",
"version": "1.1.0",
"description": "Support svgbob and mermaid text-based diagrams in Markdown-It.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"LICENSE",
"lib/**/*"
],
"scripts": {
"build": "tsc",
"lint": "npm run lint:prettier",
"lint:prettier": "prettier --write --list-different \"**/*.{md,js,ts,json,yml,css}\""
},
"repository": {
"type": "git",
"url": "https://github.com/agoose77/markdown-it-mermaid.git"
},
"keywords": [
"markdown-it",
"markdown",
"diagram",
"mermaid"
],
"author": "Angus Hollands",
"license": "MIT",
"bugs": {
"url": "https://github.com/agoose77/markdown-it-mermaid/issues"
},
"homepage": "https://github.com/agoose77/markdown-it-mermaid#readme",
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"@types/mermaid": "^9.1.0",
"typescript": "~4.8.3",
"prettier": "^2.7.1"
},
"dependencies": {
"markdown-it": "^13.0.1",
"mermaid": "^9.1.7"
},
"prettier": {
"printWidth": 88,
"proseWrap": "always"
}
}