-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 841 Bytes
/
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
{
"name": "remark-custom-directives",
"version": "1.1.0",
"description": "A remark plugin to add custom directives.",
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sea-grass/remark-custom-directives"
},
"scripts": {
"build": "tsc"
},
"keywords": [
"unified",
"remark",
"remark-plugin",
"mdast",
"markdown",
"generic",
"directive",
"container"
],
"author": "sea-grass",
"license": "MIT",
"homepage": "https://github.com/sea-grass/remark-custom-directives#readme",
"dependencies": {
"unist-util-visit": "^4.1.1"
},
"devDependencies": {
"mdast": "^3.0.0",
"mdast-util-directive": "^2.2.1",
"typescript": "^4.8.4",
"unified": "^10.1.2"
}
}