-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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": "remark-directive-rehype",
"version": "0.4.2",
"description": "Remark plugin to enable Markdown directives to be parsed as HTML.",
"keywords": [
"remark",
"plugin",
"remark-plugin",
"directive",
"remark-directive",
"rehype",
"unified",
"mdast",
"hast",
"markdown"
],
"license": "Unlicense",
"homepage": "https://github.com/IGassmann/remark-directive-rehype#readme",
"repository": "https://github.com/IGassmann/remark-directive-rehype",
"bugs": "https://github.com/IGassmann/remark-directive-rehype/issues",
"author": "Igor Gassmann <igor@igassmann.me> (https://igassmann.me)",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/"
],
"scripts": {
"build": "tsc",
"prepack": "$npm_execpath run build"
},
"dependencies": {
"hastscript": "^7.0.2",
"unist-util-map": "^3.1.2"
},
"devDependencies": {
"@types/unist": "^2.0.6",
"mdast-util-directive": "^2.1.1",
"mdast-util-from-markdown": "^1.0.4",
"typescript": "^4.4.4",
"unified": "^10.1.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"packageManager": "yarn@1.22.19"
}