astro/examples/component/package.json
Jonathan Neal 033b70a7f8
Add Component Example (#2203)
* Add Component Example

* chore(lint): Prettier fix

* nit: improve implementation

* nit: Update documentation

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-12-17 08:47:59 -05:00

17 lines
343 B
JSON

{
"name": "@example/component",
"version": "0.0.1",
"private": true,
"workspaces": [
"demo",
"packages/*"
],
"scripts": {
"start": "astro --project-root demo dev",
"build": "astro --project-root demo build",
"serve": "astro --project-root demo preview"
},
"devDependencies": {
"astro": "^0.21.11"
}
}