-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "remark-graphviz-svg",
"version": "0.2.0",
"description": "A remark plugin to convert GraphViz code into SVG diagram",
"type": "module",
"types": "./index.d.ts",
"main": "./dist/index.js",
"files": [
"package*.json",
"dist/*",
"index.d.ts"
],
"scripts": {
"build": "rm -rf dist && tsc -p ./tsconfig.build.json",
"test": "node --loader ts-node/esm ./test/test.ts",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DCsunset/remark-graphviz-svg.git"
},
"keywords": [
"remark",
"graphviz",
"svg"
],
"author": "DCsunset",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/DCsunset/remark-graphviz-svg/issues"
},
"homepage": "https://github.com/DCsunset/remark-graphviz-svg",
"devDependencies": {
"@types/node": "^17.0.8",
"mdast": "^3.0.0",
"rehype-stringify": "^9.0.2",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.3"
},
"dependencies": {
"@hpcc-js/wasm": "^1.12.7",
"@types/svgo": "^2.6.1",
"rehype-parse": "^8.0.3",
"svgo": "^2.8.0",
"unified": "^10.1.1",
"unist-util-visit": "^4.1.0"
}
}