{
  "name": "@astrojs/deno",
  "description": "Deploy your site to a Deno server",
  "version": "4.3.0",
  "type": "module",
  "types": "./dist/index.d.ts",
  "author": "withastro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/withastro/astro.git",
    "directory": "packages/integrations/deno"
  },
  "keywords": [
    "withastro",
    "astro-adapter"
  ],
  "bugs": "https://github.com/withastro/astro/issues",
  "homepage": "https://docs.astro.build/en/guides/integrations-guide/deno/",
  "exports": {
    ".": "./dist/index.js",
    "./server.js": "./dist/server.js",
    "./__deno_imports.js": "./dist/__deno_imports.js",
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "astro-scripts build \"src/**/*.ts\" && tsc",
    "build:ci": "astro-scripts build \"src/**/*.ts\"",
    "dev": "astro-scripts dev \"src/**/*.ts\"",
    "test": "deno test --allow-run --allow-env --allow-read --allow-net ./test/"
  },
  "dependencies": {
    "esbuild": "^0.15.18"
  },
  "peerDependencies": {
    "astro": "workspace:^2.10.1"
  },
  "devDependencies": {
    "astro": "workspace:*",
    "astro-scripts": "workspace:*"
  }
}