-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.83 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
{
"name": "remark-mermaid-dataurl",
"version": "3.0.1",
"description": "A remark plugin for Markdown that replaces mermaid graphs with dataurls",
"main": "index.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "npx eslint test/ index.js src/",
"prepare": "husky && tsc"
},
"engines": {
"node": "^18.19 || >=20.0"
},
"files": [
"index.js",
"src/",
"dist-types/"
],
"types": "./dist-types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/aloisklink/remark-mermaid-dataurl.git"
},
"keywords": [
"mermaidjs",
"remark-plugin"
],
"author": "Alois Klink <[email protected]> (https://aloisklink.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aloisklink/remark-mermaid-dataurl/issues"
},
"homepage": "https://github.com/aloisklink/remark-mermaid-dataurl#readme",
"dependencies": {
"@mermaid-js/mermaid-cli": "^11.0.0",
"@svgdotjs/svg.js": "^3.1.2",
"@types/mdast": "^4.0.0",
"puppeteer": "^23.5.3",
"svgdom": "^0.1.10",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@tsconfig/node18": "^18.0.0",
"@types/svgdom": "^0.1.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.1.6",
"jest": "^29.3.1",
"jest-image-snapshot": "^6.0.0",
"jest-light-runner": "^0.6.0",
"lint-staged": "^15.2.10",
"prettier": "^3.0.1",
"rehype-document": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.0",
"remark-rehype": "^11.0.0",
"typescript": "^5.0.2"
},
"lint-staged": {
"*.{mjs,cjs,js}": "eslint --cache --fix",
"*.{md,yaml,yml,json,css,mdx}": "prettier --write"
}
}