-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 1.73 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
68
{
"name": "rehype-mermaid",
"version": "3.0.0",
"description": "A rehype plugin to render mermaid diagrams",
"exports": "./dist/rehype-mermaid.js",
"main": "./dist/rehype-mermaid.js",
"type": "module",
"files": [
"dist",
"src",
"!*.test.*"
],
"scripts": {
"prepack": "tsc --build",
"pretest": "tsc --build",
"test": "c8 node --enable-source-maps --test"
},
"author": "Remco Haszing <[email protected]>",
"license": "MIT",
"repository": "remcohaszing/rehype-mermaid",
"bugs": "https://github.com/remcohaszing/rehype-mermaid/issues",
"homepage": "https://github.com/remcohaszing/rehype-mermaid#readme",
"funding": "https://github.com/sponsors/remcohaszing",
"keywords": [
"documentation",
"mdx",
"mermaid",
"plugin",
"rehype",
"rehype-plugin",
"remark",
"unified"
],
"dependencies": {
"@types/hast": "^3.0.0",
"hast-util-from-html-isomorphic": "^2.0.0",
"hast-util-to-text": "^4.0.0",
"mermaid-isomorphic": "^3.0.0",
"mini-svg-data-uri": "^1.0.0",
"space-separated-tokens": "^2.0.0",
"unified": "^11.0.0",
"unist-util-visit-parents": "^6.0.0",
"vfile": "^6.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"c8": "^10.0.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^10.0.0",
"playwright": "^1.0.0",
"prettier": "^3.0.0",
"rehype": "^13.0.0",
"remark-cli": "^12.0.0",
"remark-preset-remcohaszing": "^3.0.0",
"snapshot-fixtures": "^1.0.0",
"typescript": "^5.0.0",
"unist-util-remove-position": "^5.0.0",
"vfile-message": "^4.0.0"
},
"peerDependencies": {
"playwright": "1"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
}
}
}