2022-06-30 14:09:09 -04:00
|
|
|
{
|
|
|
|
"name": "@astrojs/mdx",
|
2023-03-13 11:25:47 -03:00
|
|
|
"description": "Add support for MDX pages in your Astro site",
|
2024-12-09 07:38:09 -08:00
|
|
|
"version": "4.0.2",
|
2022-06-30 14:09:09 -04:00
|
|
|
"type": "module",
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"author": "withastro",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2024-11-15 23:43:34 +08:00
|
|
|
"url": "git+https://github.com/withastro/astro.git",
|
2022-06-30 14:09:09 -04:00
|
|
|
"directory": "packages/integrations/mdx"
|
|
|
|
},
|
|
|
|
"keywords": [
|
2022-07-08 16:55:33 -04:00
|
|
|
"astro-integration",
|
2022-06-30 14:09:09 -04:00
|
|
|
"astro-component",
|
|
|
|
"mdx"
|
|
|
|
],
|
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 21:10:34 +02:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/mdx/",
|
2022-06-30 14:09:09 -04:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
2024-08-20 17:39:51 +08:00
|
|
|
"./server.js": "./dist/server.js",
|
2022-06-30 14:09:09 -04:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2023-05-17 16:54:00 +08:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"template"
|
|
|
|
],
|
2022-06-30 14:09:09 -04:00
|
|
|
"scripts": {
|
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
2024-03-05 23:16:55 +08:00
|
|
|
"test": "astro-scripts test --timeout 70000 \"test/**/*.test.js\""
|
2022-06-30 14:09:09 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-08-01 12:05:59 +01:00
|
|
|
"@astrojs/markdown-remark": "workspace:*",
|
2024-10-22 13:07:28 +01:00
|
|
|
"@mdx-js/mdx": "^3.1.0",
|
2024-10-28 22:00:15 +08:00
|
|
|
"acorn": "^8.14.0",
|
2024-06-24 22:33:33 +08:00
|
|
|
"es-module-lexer": "^1.5.4",
|
2023-11-21 12:09:19 +08:00
|
|
|
"estree-util-visit": "^2.0.0",
|
2024-09-26 14:57:59 +01:00
|
|
|
"hast-util-to-html": "^9.0.3",
|
2024-04-22 22:52:30 +08:00
|
|
|
"kleur": "^4.1.5",
|
2023-11-21 12:09:19 +08:00
|
|
|
"rehype-raw": "^7.0.0",
|
|
|
|
"remark-gfm": "^4.0.0",
|
2024-07-17 14:48:07 +08:00
|
|
|
"remark-smartypants": "^3.0.2",
|
2023-04-11 13:44:39 -04:00
|
|
|
"source-map": "^0.7.4",
|
2023-11-21 12:09:19 +08:00
|
|
|
"unist-util-visit": "^5.0.0",
|
2024-08-28 10:45:45 +01:00
|
|
|
"vfile": "^6.0.3"
|
2022-06-30 14:09:09 -04:00
|
|
|
},
|
2023-07-31 21:51:37 +08:00
|
|
|
"peerDependencies": {
|
2024-12-03 13:07:55 +01:00
|
|
|
"astro": "^5.0.0"
|
2023-07-31 21:51:37 +08:00
|
|
|
},
|
2022-06-30 14:09:09 -04:00
|
|
|
"devDependencies": {
|
2024-09-26 14:57:59 +01:00
|
|
|
"@types/estree": "^1.0.6",
|
2024-05-09 15:20:13 +08:00
|
|
|
"@types/hast": "^3.0.4",
|
2024-05-30 17:28:57 +08:00
|
|
|
"@types/mdast": "^4.0.4",
|
2022-06-30 14:09:09 -04:00
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*",
|
2024-08-13 22:29:37 +08:00
|
|
|
"cheerio": "1.0.0",
|
2024-09-26 14:57:59 +01:00
|
|
|
"linkedom": "^0.18.5",
|
2023-11-21 12:09:19 +08:00
|
|
|
"mdast-util-mdx": "^3.0.0",
|
2024-08-28 10:45:45 +01:00
|
|
|
"mdast-util-mdx-jsx": "^3.1.3",
|
2023-11-21 12:09:19 +08:00
|
|
|
"mdast-util-to-string": "^4.0.0",
|
2024-04-20 00:11:20 +08:00
|
|
|
"rehype-mathjax": "^6.0.0",
|
2024-09-02 10:54:53 +08:00
|
|
|
"rehype-pretty-code": "^0.14.0",
|
2023-11-21 12:09:19 +08:00
|
|
|
"remark-math": "^6.0.0",
|
2024-09-26 14:57:59 +01:00
|
|
|
"remark-rehype": "^11.1.1",
|
2023-06-21 21:09:49 +08:00
|
|
|
"remark-shiki-twoslash": "^3.1.3",
|
2023-11-21 12:09:19 +08:00
|
|
|
"remark-toc": "^9.0.0",
|
2024-11-27 16:20:16 +08:00
|
|
|
"shiki": "^1.23.1",
|
2024-06-24 22:33:33 +08:00
|
|
|
"unified": "^11.0.5",
|
2024-11-27 18:00:35 +08:00
|
|
|
"vite": "^6.0.1"
|
2022-06-30 14:09:09 -04:00
|
|
|
},
|
|
|
|
"engines": {
|
2024-11-27 21:54:00 +08:00
|
|
|
"node": "^18.17.1 || ^20.3.0 || >=22.0.0"
|
2023-10-03 16:25:25 +02:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"provenance": true
|
2022-06-30 14:09:09 -04:00
|
|
|
}
|
|
|
|
}
|