forked from vernak2539/astro-rehype-relative-markdown-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "astro-rehype-relative-markdown-links",
"description": "A rehype plugin built for Astro that aims to transform relative links in MD and MDX files into the proper URL path",
"version": "0.4.4",
"keywords": [
"astro",
"rehype",
"markdown",
"relative links"
],
"homepage": "https://github.com/vernak2539/astro-rehype-relative-markdown-links",
"main": "index.mjs",
"type": "module",
"files": [
"index.mjs",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/vernak2539/astro-rehype-relative-markdown-links.git"
},
"author": "Alex Vernacchia <alvernacchia@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vernak2539/astro-rehype-relative-markdown-links/issues",
"email": "alvernacchia@gmail.com"
},
"scripts": {
"prettier": "prettier index.mjs -w"
},
"dependencies": {
"debug": "^4.3.4",
"gray-matter": "^4.0.3",
"unist-util-visit": "^4.1.2"
},
"peerDependencies": {
"astro": "2.x"
},
"devDependencies": {
"prettier": "^4.0.0-alpha.8"
}
}