-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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": "@beoe/rehype-graphviz",
"type": "module",
"version": "0.3.0",
"description": "rehype graphviz plugin",
"keywords": [
"rehype",
"graphviz"
],
"author": "stereobooster",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stereobooster/beoe.git",
"directory": "packages/rehype-graphviz"
},
"homepage": "https://beoe.stereobooster.com/diagrams/graphviz/",
"sideEffects": false,
"exports": {
"types": "./dist/index.d.js",
"default": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist"
],
"types": "./dist/index.d.js",
"scripts": {
"test": "vitest",
"build": "rm -rf dist && tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist"
},
"dependencies": {
"@beoe/rehype-code-hook": "workspace:*",
"@beoe/rehype-code-hook-img": "workspace:*",
"@hpcc-js/wasm": "^2.22.3"
},
"devDependencies": {
"@types/hast": "^3.0.4",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"unified": "^11.0.5"
}
}