astro/examples/with-markdown-plugins/package.json
2021-09-06 08:25:23 +00:00

33 lines
797 B
JSON

{
"name": "@example/with-markdown-plugins",
"version": "0.0.2",
"private": true,
"description": "Using Markdown along with Rehype and Remark Plugins with Astro",
"keywords": [
"kitchen-sink",
"template",
"astro"
],
"repository": {
"directory": "/examples/with-markdown-plugins",
"type": "github",
"url": "https://github.com/snowpackjs/astro/tree/main"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.20.4",
"rehype-add-classes": "^1.0.0",
"rehype-autolink-headings": "^6.1.0",
"rehype-toc": "^3.0.2",
"remark-code-titles": "^0.1.2",
"remark-slug": "^6.0.0"
},
"snowpack": {
"workspaceRoot": "../.."
}
}