-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"name": "mdx-mermaid",
"version": "1.2.1",
"description": "Display mermaid diagrams in mdx files.",
"types": "index.d.ts",
"main": "lib/mdxast-mermaid.js",
"exports": {
".": "./lib/mdxast-mermaid.js",
"./Mermaid": "./lib/Mermaid.js",
"./lib/Mermaid": "./lib/Mermaid.js"
},
"author": "Sam Wall ([email protected])",
"license": "MIT",
"scripts": {
"build": "rimraf lib && tsc",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/sjwall/mdx-mermaid.git"
},
"homepage": "https://sjwall.github.io/mdx-mermaid",
"bugs": "https://github.com/sjwall/mdx-mermaid/issues",
"keywords": [
"mdx",
"markdown",
"mermaid",
"docusaurus",
"mdxast",
"react",
"jsx"
],
"peerDependencies": {
"mermaid": ">= 8.11.0 < 8.12.0",
"react": "^16.8.4 || ^17.0.0",
"unist-util-visit": "^2.0.0"
},
"devDependencies": {
"@mdx-js/mdx": "^1.6.22",
"@types/jest": "^27.4.0",
"@types/mermaid": "^8.2.7",
"@types/react": "^17.0.38",
"@types/unist": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.5.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"jest": "^27.4.7",
"mermaid": "^8.0.0",
"react": "^17.0.1",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4",
"unist-util-visit": "^2.0.0"
}
}