-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "remark-mdx-frontmatter",
"version": "5.0.0",
"description": "A remark plugin for converting frontmatter metadata into MDX exports",
"author": "Remco Haszing <[email protected]>",
"license": "MIT",
"type": "module",
"exports": "./dist/remark-mdx-frontmatter.js",
"main": "./dist/remark-mdx-frontmatter.js",
"repository": "remcohaszing/remark-mdx-frontmatter",
"bugs": "https://github.com/remcohaszing/remark-mdx-frontmatter/issues",
"homepage": "https://github.com/remcohaszing/remark-mdx-frontmatter#readme",
"funding": "https://github.com/sponsors/remcohaszing",
"keywords": [
"frontmatter",
"markdown",
"markdown-frontmatter",
"mdast",
"mdx",
"remark",
"remark-plugin",
"toml",
"unified",
"yaml"
],
"files": [
"dist",
"src",
"!test*"
],
"scripts": {
"prepack": "tsc --build",
"pretest": "tsc --build",
"test": "c8 node --test"
},
"dependencies": {
"@types/mdast": "^4.0.0",
"estree-util-is-identifier-name": "^3.0.0",
"estree-util-value-to-estree": "^3.0.0",
"toml": "^3.0.0",
"unified": "^11.0.0",
"yaml": "^2.0.0"
},
"devDependencies": {
"@mdx-js/mdx": "^3.0.0",
"@types/node": "*",
"c8": "^10.0.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^10.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-react": "^7.0.0",
"mdast-util-mdx": "^3.0.0",
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-frontmatter": "^5.0.0",
"remark-preset-remcohaszing": "^3.0.0",
"snapshot-fixtures": "^1.0.0",
"typescript": "^5.0.0"
}
}