2022-06-30 13:09:09 -05:00
|
|
|
{
|
|
|
|
"name": "@astrojs/mdx",
|
|
|
|
"description": "Use MDX within Astro",
|
2022-09-02 15:13:04 -05:00
|
|
|
"version": "0.11.1",
|
2022-06-30 13:09:09 -05: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 15:55:33 -05:00
|
|
|
"astro-integration",
|
2022-06-30 13:09:09 -05:00
|
|
|
"astro-component",
|
|
|
|
"mdx"
|
|
|
|
],
|
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 14:10:34 -05:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/mdx/",
|
2022-06-30 13:09:09 -05: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 18:50:59 -05:00
|
|
|
"@astrojs/prism": "^1.0.1",
|
2022-07-21 15:43:58 -05:00
|
|
|
"@mdx-js/mdx": "^2.1.2",
|
2022-07-20 09:56:32 -05:00
|
|
|
"@mdx-js/rollup": "^2.1.1",
|
2022-08-01 16:23:56 -05:00
|
|
|
"acorn": "^8.8.0",
|
2022-07-20 13:14:23 -05:00
|
|
|
"es-module-lexer": "^0.10.5",
|
2022-08-01 16:23:56 -05:00
|
|
|
"github-slugger": "^1.4.0",
|
2022-07-29 10:22:57 -05:00
|
|
|
"gray-matter": "^4.0.3",
|
2022-08-30 12:38:35 -05:00
|
|
|
"kleur": "^4.1.4",
|
2022-07-21 15:43:58 -05:00
|
|
|
"rehype-raw": "^6.1.1",
|
2022-07-29 10:22:57 -05:00
|
|
|
"remark-frontmatter": "^4.0.1",
|
2022-07-20 13:14:23 -05:00
|
|
|
"remark-gfm": "^3.0.1",
|
2022-07-21 15:43:58 -05:00
|
|
|
"remark-smartypants": "^2.0.0",
|
2022-08-28 06:23:37 -05:00
|
|
|
"shiki": "^0.11.1",
|
2022-08-05 18:55:38 -05:00
|
|
|
"unist-util-visit": "^4.1.0",
|
|
|
|
"vfile": "^5.3.2"
|
2022-06-30 13:09:09 -05: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 09:56:32 -05:00
|
|
|
"linkedom": "^0.14.12",
|
2022-08-01 16:23:56 -05:00
|
|
|
"mdast-util-to-string": "^3.1.0",
|
2022-07-20 13:14:23 -05:00
|
|
|
"mocha": "^9.2.2",
|
2022-08-01 16:23:56 -05:00
|
|
|
"reading-time": "^1.5.0",
|
2022-08-15 09:43:12 -05:00
|
|
|
"remark-shiki-twoslash": "^3.1.0",
|
2022-07-20 13:14:23 -05:00
|
|
|
"remark-toc": "^8.0.1"
|
2022-06-30 13:09:09 -05:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-07-15 07:15:04 -05:00
|
|
|
"node": "^14.18.0 || >=16.12.0"
|
2022-06-30 13:09:09 -05:00
|
|
|
}
|
|
|
|
}
|