astro/examples/minimal/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
292 B
JSON
Raw Normal View History

2021-08-15 19:13:58 +00:00
{
"name": "@example/minimal",
"type": "module",
2021-08-15 19:13:58 +00:00
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
2021-08-15 19:13:58 +00:00
"start": "astro dev",
"build": "astro build",
2022-08-06 04:36:23 +00:00
"preview": "astro preview",
"astro": "astro"
2021-08-15 19:13:58 +00:00
},
"dependencies": {
"astro": "^2.8.5"
2021-08-15 19:13:58 +00:00
}
}