2022-06-30 18:09:09 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/mdx",
|
|
|
|
"description": "Use MDX within Astro",
|
2022-08-26 17:01:30 +00:00
|
|
|
"version": "0.10.2",
|
2022-06-30 18:09:09 +00:00
|
|
|
"type": "module",
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"author": "withastro",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/withastro/astro.git",
|
|
|
|
"directory": "packages/integrations/mdx"
|
|
|
|
},
|
|
|
|
"keywords": [
|
2022-07-08 20:55:33 +00:00
|
|
|
"astro-integration",
|
2022-06-30 18:09:09 +00:00
|
|
|
"astro-component",
|
|
|
|
"mdx"
|
|
|
|
],
|
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 19:10:34 +00:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/mdx/",
|
2022-06-30 18:09:09 +00:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
|
|
|
"test": "mocha --exit --timeout 20000"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-08-11 23:50:59 +00:00
|
|
|
"@astrojs/prism": "^1.0.1",
|
2022-07-21 20:43:58 +00:00
|
|
|
"@mdx-js/mdx": "^2.1.2",
|
2022-07-20 14:56:32 +00:00
|
|
|
"@mdx-js/rollup": "^2.1.1",
|
2022-08-01 21:23:56 +00:00
|
|
|
"acorn": "^8.8.0",
|
2022-07-20 18:14:23 +00:00
|
|
|
"es-module-lexer": "^0.10.5",
|
2022-08-01 21:23:56 +00:00
|
|
|
"github-slugger": "^1.4.0",
|
2022-07-29 15:22:57 +00:00
|
|
|
"gray-matter": "^4.0.3",
|
2022-07-21 20:43:58 +00:00
|
|
|
"rehype-raw": "^6.1.1",
|
2022-07-29 15:22:57 +00:00
|
|
|
"remark-frontmatter": "^4.0.1",
|
2022-07-20 18:14:23 +00:00
|
|
|
"remark-gfm": "^3.0.1",
|
2022-07-21 20:43:58 +00:00
|
|
|
"remark-smartypants": "^2.0.0",
|
|
|
|
"shiki": "^0.10.1",
|
2022-08-05 23:55:38 +00:00
|
|
|
"unist-util-visit": "^4.1.0",
|
|
|
|
"vfile": "^5.3.2"
|
2022-06-30 18:09:09 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/chai": "^4.3.1",
|
|
|
|
"@types/mocha": "^9.1.1",
|
|
|
|
"@types/yargs-parser": "^21.0.0",
|
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*",
|
|
|
|
"chai": "^4.3.6",
|
2022-07-20 14:56:32 +00:00
|
|
|
"linkedom": "^0.14.12",
|
2022-08-01 21:23:56 +00:00
|
|
|
"mdast-util-to-string": "^3.1.0",
|
2022-07-20 18:14:23 +00:00
|
|
|
"mocha": "^9.2.2",
|
2022-08-01 21:23:56 +00:00
|
|
|
"reading-time": "^1.5.0",
|
2022-08-15 14:43:12 +00:00
|
|
|
"remark-shiki-twoslash": "^3.1.0",
|
2022-07-20 18:14:23 +00:00
|
|
|
"remark-toc": "^8.0.1"
|
2022-06-30 18:09:09 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-07-15 12:15:04 +00:00
|
|
|
"node": "^14.18.0 || >=16.12.0"
|
2022-06-30 18:09:09 +00:00
|
|
|
}
|
|
|
|
}
|