astro/examples/minimal/package.json

25 lines
548 B
JSON
Raw Normal View History

2021-08-15 15:13:58 -04:00
{
"name": "@example/minimal",
"version": "0.0.1",
"private": true,
2021-08-10 01:24:25 +01:00
"description": "Minimalistic Astro Starter kit",
"keywords": ["create-astro","template","astro"],
"repository": {
"directory": "/examples/minimal",
"type": "github",
"url": "https://github.com/snowpackjs/astro/tree/main"
},
2021-08-15 15:13:58 -04:00
"scripts": {
"dev": "astro dev",
2021-08-15 15:13:58 -04:00
"start": "astro dev",
"build": "astro build",
"preview": "astro preview"
2021-08-15 15:13:58 -04:00
},
"devDependencies": {
"astro": "^0.20.4"
},
"snowpack": {
"workspaceRoot": "../.."
2021-08-15 15:13:58 -04:00
}
}