-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.9 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
66
67
68
69
70
71
72
73
{
"name": "remark-mdx-next",
"version": "0.1.1",
"description": "A remark plugin for converting frontmatter metadata into MDX exports",
"main": "dist/index.js",
"author": "Omid Kashan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/omidantilong/remark-mdx-next.git"
},
"bugs": {
"url": "https://github.com/omidantilong/remark-mdx-next/issues"
},
"homepage": "https://github.com/omidantilong/remark-mdx-next#readme",
"keywords": [
"frontmatter",
"nextjs",
"next",
"getstaticprops",
"markdown",
"markdown-frontmatter",
"mdast",
"mdx",
"remark",
"remark-plugin",
"toml",
"unified",
"xdm",
"yaml"
],
"files": [
"dist"
],
"engines": {
"node": ">=12.2.0"
},
"scripts": {
"prepack": "tsc --project tsconfig.build.json",
"test": "ts-node index.test.mjs"
},
"dependencies": {
"estree-util-is-identifier-name": "^1.0.0",
"estree-util-value-to-estree": "^1.0.0",
"js-yaml": "^4.0.0",
"toml": "^3.0.0"
},
"devDependencies": {
"@mdx-js/mdx": "^2.0.0-rc.1",
"@types/js-yaml": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.0.0",
"eslint-config-remcohaszing": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsdoc": "^37.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-markdown": "^2.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.0.0",
"eslint-plugin-unicorn": "^37.0.0",
"mdast-util-mdx": "^1.0.0",
"prettier": "^2.0.0",
"remark-frontmatter": "^3.0.0",
"tape": "^5.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.0.0",
"unified": "^9.0.0"
}
}