-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "eslint-plugin-mdx",
"version": "3.2.0",
"description": "ESLint Plugin for MDX",
"repository": "git+https://github.com/mdx-js/eslint-mdx.git",
"homepage": "https://github.com/mdx-js/eslint-mdx/blob/master/packages/eslint-plugin-mdx",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"main": "lib/index.js",
"module": "lib/index.es2015.mjs",
"types": "lib",
"files": [
"lib",
"typings.d.ts"
],
"keywords": [
"eslint",
"eslint-mdx",
"eslint-plugin",
"eslint-plugin-mdx",
"mdx"
],
"peerDependencies": {
"eslint": ">=8.0.0"
},
"dependencies": {
"eslint-mdx": "^3.2.0",
"mdast-util-from-markdown": "^2.0.2",
"remark-mdx": "^3.1.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"synckit": "^0.9.2",
"tslib": "^2.8.1",
"unified": "^11.0.5",
"vfile": "^6.0.3"
}
}