2022-06-30 13:09:09 -05:00
|
|
|
{
|
|
|
|
"name": "@astrojs/mdx",
|
|
|
|
"description": "Use MDX within Astro",
|
2023-01-03 17:23:30 -05:00
|
|
|
"version": "0.15.0-beta.0",
|
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\"",
|
2022-10-24 13:27:37 -05:00
|
|
|
"test": "mocha --exit --timeout 20000",
|
|
|
|
"test:match": "mocha --timeout 20000 -g"
|
2022-06-30 13:09:09 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-01-03 17:23:30 -05:00
|
|
|
"@astrojs/markdown-remark": "^2.0.0-beta.0",
|
2022-11-03 08:38:29 -05:00
|
|
|
"@astrojs/prism": "^1.0.2",
|
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-09-26 17:23:47 -05:00
|
|
|
"estree-util-visit": "^1.2.0",
|
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-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",
|
2022-09-26 17:23:47 -05:00
|
|
|
"@types/estree": "^1.0.0",
|
2022-09-28 10:13:33 -05:00
|
|
|
"@types/github-slugger": "^1.3.0",
|
2022-12-22 10:38:03 -05:00
|
|
|
"@types/mdast": "^3.0.10",
|
2022-06-30 13:09:09 -05:00
|
|
|
"@types/mocha": "^9.1.1",
|
|
|
|
"@types/yargs-parser": "^21.0.0",
|
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*",
|
|
|
|
"chai": "^4.3.6",
|
2022-09-28 10:13:33 -05:00
|
|
|
"cheerio": "^1.0.0-rc.11",
|
2022-07-20 09:56:32 -05:00
|
|
|
"linkedom": "^0.14.12",
|
2022-09-28 10:13:33 -05:00
|
|
|
"mdast-util-mdx": "^2.0.0",
|
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-11-09 09:23:05 -05:00
|
|
|
"rehype-pretty-code": "^0.4.0",
|
2022-11-22 10:12:25 -05:00
|
|
|
"remark-rehype": "^10.1.0",
|
2022-08-15 09:43:12 -05:00
|
|
|
"remark-shiki-twoslash": "^3.1.0",
|
2022-09-28 10:13:33 -05:00
|
|
|
"remark-toc": "^8.0.1",
|
2023-01-03 13:24:49 -05:00
|
|
|
"vite": "^4.0.3"
|
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
|
|
|
}
|
|
|
|
}
|