-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "rehype-graphviz-diagram",
"version": "0.0.7",
"description": "A Unified/Rehype Plugin that allows you transform graphviz codes into SVG diagram.",
"main": "./dist/index.js",
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier . --write",
"test": "pnpm run build && tsx --test ./__tests__/*.test.ts",
"prepublish": "pnpm run format && pnpm run test && pnpm run build"
},
"keywords": [
"markdown",
"diagram",
"mdx",
"hast",
"graphviz",
"uml",
"plugin",
"rehype",
"text-to-diagram",
"rehype-plugin",
"unified"
],
"bugs": {
"url": "https://github.com/PrinOrange/rehype-graphviz-diagram/issues"
},
"homepage": "https://github.com/PrinOrange/rehype-graphviz-diagram",
"repository": {
"type": "git",
"url": "https://github.com/PrinOrange/rehype-graphviz-diagram"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/hast": "^3.0.4",
"@viz-js/viz": "^3.11.0",
"hast-util-from-html-isomorphic": "^2.0.0",
"hastscript": "^9.0.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.5",
"jsdom": "^26.0.0",
"prettier": "^3.5.2",
"rehype-parse": "^9.0.1",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"tsx": "^4.19.3"
}
}