mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
98fa8f02ab
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
86 lines
2.2 KiB
JSON
86 lines
2.2 KiB
JSON
{
|
|
"name": "@astrojs/mdx",
|
|
"description": "Add support for MDX pages in your Astro site",
|
|
"version": "2.0.3",
|
|
"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": [
|
|
"astro-integration",
|
|
"astro-component",
|
|
"mdx"
|
|
],
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/mdx/",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"template"
|
|
],
|
|
"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",
|
|
"test:match": "mocha --timeout 20000 -g"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/markdown-remark": "workspace:*",
|
|
"@mdx-js/mdx": "^3.0.0",
|
|
"acorn": "^8.11.2",
|
|
"es-module-lexer": "^1.4.1",
|
|
"estree-util-visit": "^2.0.0",
|
|
"github-slugger": "^2.0.0",
|
|
"gray-matter": "^4.0.3",
|
|
"hast-util-to-html": "^9.0.0",
|
|
"kleur": "^4.1.4",
|
|
"rehype-raw": "^7.0.0",
|
|
"remark-gfm": "^4.0.0",
|
|
"remark-smartypants": "^2.0.0",
|
|
"source-map": "^0.7.4",
|
|
"unist-util-visit": "^5.0.0",
|
|
"vfile": "^6.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"astro": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.10",
|
|
"@types/estree": "^1.0.5",
|
|
"@types/mdast": "^4.0.3",
|
|
"@types/mocha": "^10.0.4",
|
|
"@types/yargs-parser": "^21.0.3",
|
|
"astro": "workspace:*",
|
|
"astro-scripts": "workspace:*",
|
|
"chai": "^4.3.7",
|
|
"cheerio": "1.0.0-rc.12",
|
|
"linkedom": "^0.16.4",
|
|
"mdast-util-mdx": "^3.0.0",
|
|
"mdast-util-to-string": "^4.0.0",
|
|
"mocha": "^10.2.0",
|
|
"reading-time": "^1.5.0",
|
|
"rehype-mathjax": "^5.0.0",
|
|
"rehype-pretty-code": "^0.10.2",
|
|
"remark-math": "^6.0.0",
|
|
"remark-rehype": "^11.0.0",
|
|
"remark-shiki-twoslash": "^3.1.3",
|
|
"remark-toc": "^9.0.0",
|
|
"unified": "^11.0.4",
|
|
"vite": "^5.0.10"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.14.1"
|
|
},
|
|
"publishConfig": {
|
|
"provenance": true
|
|
}
|
|
}
|