forked from remcohaszing/remark-mdx-frontmatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.53 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
{
"name": "@allenlee/remark-mdx-frontmatter",
"version": "3.1.2",
"description": "A remark-mdx-frontmatter fork",
"author": "Allen Lee<648384410li@gmail.com>",
"license": "MIT",
"type": "module",
"exports": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cangSDARM/remark-mdx-frontmatter.git"
},
"bugs": {
"url": "https://github.com/cangSDARM/remark-mdx-frontmatter/issues"
},
"homepage": "https://github.com/cangSDARM/remark-mdx-frontmatter#readme",
"funding": "https://github.com/sponsors/cangSDARM",
"keywords": [
"frontmatter",
"markdown",
"markdown-frontmatter",
"mdast",
"mdx",
"remark",
"remark-plugin",
"toml",
"unified",
"xdm",
"yaml"
],
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc --noEmit false",
"test": "c8 tsx ./test.ts"
},
"dependencies": {
"@types/mdast": "^3.0.0",
"estree-util-is-identifier-name": "^2.0.0",
"estree-util-value-to-estree": "^2.0.0",
"toml": "^3.0.0",
"unified": "^10.0.0",
"yaml": "^2.0.0"
},
"devDependencies": {
"@mdx-js/mdx": "^2.0.0",
"@types/node": "*",
"c8": "^7.0.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^7.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-react": "^7.0.0",
"mdast-util-mdx": "^2.0.0",
"prettier": "^2.0.0",
"remark-frontmatter": "^4.0.0",
"tsx": "^3.0.0",
"typescript": "^4.0.0",
"uvu": "^0.5.0"
}
}