Urara-Blog/node_modules/.pnpm-store/v3/files/26/86fbfb001479ab0ade44b582e7c6be6b5fcebf7b2545ff0ebe981acf5b25354ccb529a0963c7c2795254744b3168714278cd6736dd7a5bb6599c4c3ee31e90
2022-08-14 01:14:53 +08:00

71 lines
No EOL
2.3 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "mdsvex",
"version": "0.10.6",
"description": "Markdown preprocessor for Svelte",
"main": "dist/main.cjs.js",
"module": "dist/main.es.js",
"browser": "dist/mdsvex.js",
"repository": "https://github.com/pngwn/MDsveX",
"files": [
"dist/*",
"globals.d.ts"
],
"keywords": [
"test",
"preprocessor",
"mdx",
"markdown",
"svelte"
],
"author": "pngwn <hello@pngwn.io>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-sucrase": "^3.1.0",
"@starptech/prettyhtml-hast-to-html": "^0.10.0",
"@types/acorn": "^4.0.5",
"@types/escape-html": "^1.0.0",
"@types/estree": "^0.0.45",
"@types/hast": "^2.3.1",
"@types/js-yaml": "^3.12.5",
"escape-html": "^1.0.3",
"front-matter": "^4.0.0",
"js-yaml": "^3.13.1",
"node-fetch": "^2.6.0",
"rehype-slug": "^3.0.0",
"rehype-toc": "^3.0.1",
"remark-autolink-headings": "^6.0.0",
"remark-containers": "^1.1.1",
"remark-external-links": "^6.0.0",
"remark-frontmatter": "^2.0.0",
"remark-parse": "^8.0.2",
"remark-rehype": "^7.0.0",
"remark-slug": "^6.0.0",
"retext": "^7.0.1",
"retext-smartypants": "^4.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.1.1",
"shiki": "^0.9.3",
"svelte": "^3.14.1",
"toml": "^3.0.0",
"unified": "^9.1.0",
"vfile": "^4.2.0"
},
"peerDependencies": {
"svelte": "3.x"
},
"dependencies": {
"@types/unist": "^2.0.3",
"prism-svelte": "^0.4.7",
"prismjs": "^1.17.1",
"vfile-message": "^2.0.4"
},
"scripts": {
"build": "rollup -c"
},
"readme": "# MDsveX\n\n_do ya think I'm svexy?_\n\nA markdown preprocessor for Svelte components. Basically [MDX](https://github.com/mdx-js/mdx) for Svelte.\n\nThis preprocessor allows you use Svelte components in your markdown, or markdown in your svelte components.\n\n[Try it](https://mdsvex.com/)\n\nYou can do this:\n\n```jsx\n<script>\n import { Chart } from '../components/Chart.svelte';\n</script>\n\n# Heres a chart\n\nThe chart is rendered inside our MDsveX document.\n\n<Chart />\n```\n\nhttps://mdsvex.com/\n"
}