astro/examples/with-markdown/package.json

25 lines
586 B
JSON
Raw Normal View History

{
"name": "@example/with-markdown",
2021-08-10 00:24:25 +00:00
"description": "A demonstration on using Markdown with Astro",
"version": "0.0.1",
"private": true,
2021-08-10 00:24:25 +00:00
"keywords": ["kitchen-sink","template","astro"],
"repository": {
"directory": "/examples/with-markdown",
"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"
},
"snowpack": {
"workspaceRoot": "../.."
}
}