diff options
Diffstat (limited to 'packages/integrations/mdx/package.json')
-rw-r--r-- | packages/integrations/mdx/package.json | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/packages/integrations/mdx/package.json b/packages/integrations/mdx/package.json new file mode 100644 index 000000000..6957bf8d1 --- /dev/null +++ b/packages/integrations/mdx/package.json @@ -0,0 +1,80 @@ +{ + "name": "@astrojs/mdx", + "description": "Add support for MDX pages in your Astro site", + "version": "4.3.0", + "type": "module", + "types": "./dist/index.d.ts", + "author": "withastro", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+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", + "./server.js": "./dist/server.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": "astro-scripts test --timeout 70000 \"test/**/*.test.js\"" + }, + "dependencies": { + "@astrojs/markdown-remark": "workspace:*", + "@mdx-js/mdx": "^3.1.0", + "acorn": "^8.14.1", + "es-module-lexer": "^1.6.0", + "estree-util-visit": "^2.0.0", + "hast-util-to-html": "^9.0.5", + "kleur": "^4.1.5", + "rehype-raw": "^7.0.0", + "remark-gfm": "^4.0.1", + "remark-smartypants": "^3.0.2", + "source-map": "^0.7.4", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.3" + }, + "peerDependencies": { + "astro": "^5.0.0" + }, + "devDependencies": { + "@types/estree": "^1.0.7", + "@types/hast": "^3.0.4", + "@types/mdast": "^4.0.4", + "astro": "workspace:*", + "astro-scripts": "workspace:*", + "cheerio": "1.0.0", + "linkedom": "^0.18.9", + "mdast-util-mdx": "^3.0.0", + "mdast-util-mdx-jsx": "^3.2.0", + "rehype-mathjax": "^7.1.0", + "rehype-pretty-code": "^0.14.1", + "remark-math": "^6.0.0", + "remark-rehype": "^11.1.1", + "remark-shiki-twoslash": "^3.1.3", + "remark-toc": "^9.0.0", + "shiki": "^3.2.1", + "unified": "^11.0.5", + "vite": "^6.3.4" + }, + "engines": { + "node": "18.20.8 || ^20.3.0 || >=22.0.0" + }, + "publishConfig": { + "provenance": true + } +} |