-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
Copy pathpackage.json
78 lines (78 loc) · 2.27 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
74
75
76
77
78
{
"name": "gatsby-plugin-mdx",
"version": "5.15.0-next.0",
"description": "MDX integration for Gatsby",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-mdx#readme",
"scripts": {
"build": "babel src --out-dir dist/ --ignore \"**/__tests__\" --ignore \"**/__mocks__\" --extensions \".ts\"",
"typegen": "tsc --emitDeclarationOnly --declaration --declarationDir dist/",
"prepare": "cross-env NODE_ENV=production npm run clean && npm run build && npm run typegen",
"watch": "babel -w src --out-dir dist/ --ignore \"**/__tests__\" --extensions \".ts,.tsx\"",
"test": "jest",
"clean": "del-cli dist/*"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby.git",
"directory": "packages/gatsby-plugin-mdx"
},
"peerDependencies": {
"@mdx-js/react": "^2.0.0",
"gatsby": "^5.0.0-next",
"gatsby-source-filesystem": "^5.0.0-next",
"react": "^18.0.0 || ^0.0.0",
"react-dom": "^18.0.0 || ^0.0.0"
},
"dependencies": {
"@mdx-js/mdx": "^2.3.0",
"acorn": "^8.8.2",
"acorn-jsx": "^5.3.2",
"astring": "^1.8.5",
"deepmerge": "^4.3.1",
"estree-util-build-jsx": "^2.2.2",
"fs-extra": "^11.2.0",
"gatsby-core-utils": "^4.15.0-next.0",
"gatsby-plugin-utils": "^4.15.0-next.0",
"gray-matter": "^4.0.3",
"mdast-util-mdx": "^2.0.1",
"mdast-util-to-hast": "^10.2.0",
"mdast-util-to-markdown": "^1.5.0",
"mdast-util-toc": "^6.1.1",
"rehype-infer-description-meta": "^1.1.0",
"remark-unwrap-images": "^3.0.1",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.2",
"vfile": "^5.3.7"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@types/estree": "^1.0.1",
"@types/mdast": "^3.0.11",
"@types/unist": "^2.0.6",
"babel-preset-gatsby-package": "^3.15.0-next.0",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
"opentracing": "^0.14.7",
"typescript": "^5.1.6",
"webpack": "^5.88.1"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"mdx",
"markdown",
"remark",
"rehype"
],
"files": [
"dist/*",
"gatsby-node.js"
]
}