aboutsummaryrefslogtreecommitdiff
path: root/examples/deno/package.json
diff options
context:
space:
mode:
authorGravatar Elian ☕️ <elianvancutsem@gmail.com> 2022-06-21 19:07:07 +0200
committerGravatar GitHub <noreply@github.com> 2022-06-21 13:07:07 -0400
commite88b23ea5271369bcd26b0f011cc9146fc258b8c (patch)
treec784e82e3d66674ef924474b409a0c31d0521313 /examples/deno/package.json
parentb4db008e53867386542aa6e74c9649f574045dc9 (diff)
downloadastro-e88b23ea5271369bcd26b0f011cc9146fc258b8c.tar.gz
astro-e88b23ea5271369bcd26b0f011cc9146fc258b8c.tar.zst
astro-e88b23ea5271369bcd26b0f011cc9146fc258b8c.zip
add Astro Deno Example (#3645)
* add Astro Deno Example * add changeset * update pnpm lock Co-authored-by: Dan Jutan <danjutan@gmail.com>
Diffstat (limited to 'examples/deno/package.json')
-rw-r--r--examples/deno/package.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/deno/package.json b/examples/deno/package.json
new file mode 100644
index 000000000..f172e4b0f
--- /dev/null
+++ b/examples/deno/package.json
@@ -0,0 +1,16 @@
+{
+ "name": "@example/deno",
+ "version": "0.0.1",
+ "private": true,
+ "scripts": {
+ "dev": "astro dev",
+ "start": "astro dev",
+ "build": "astro build",
+ "preview": "astro preview",
+ "preview:deno": "deno run --allow-net --allow-read ./dist/server/entry.mjs"
+ },
+ "devDependencies": {
+ "@astrojs/deno": "^0.1.5",
+ "astro": "^1.0.0-beta.47"
+ }
+}