2022-03-30 12:42:19 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/deno",
|
|
|
|
"description": "Deploy your site to a Deno server",
|
2023-08-03 15:17:43 +00:00
|
|
|
"version": "5.0.0-beta.0",
|
2022-03-30 12:42:19 +00:00
|
|
|
"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"
|
|
|
|
},
|
2022-07-08 20:57:10 +00:00
|
|
|
"keywords": [
|
2022-08-30 20:19:19 +00:00
|
|
|
"withastro",
|
2022-07-08 20:57:10 +00:00
|
|
|
"astro-adapter"
|
|
|
|
],
|
2022-03-30 12:42:19 +00:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 19:10:34 +00:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/deno/",
|
2022-03-30 12:42:19 +00:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
|
|
|
"./server.js": "./dist/server.js",
|
2023-02-17 18:19:19 +00:00
|
|
|
"./__deno_imports.js": "./dist/__deno_imports.js",
|
2022-03-30 12:42:19 +00:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2023-05-17 08:54:00 +00:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2022-03-30 12:42:19 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
2022-04-13 17:31:50 +00:00
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
2022-03-30 12:42:19 +00:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
2022-06-07 15:41:32 +00:00
|
|
|
"test": "deno test --allow-run --allow-env --allow-read --allow-net ./test/"
|
2022-06-06 16:02:13 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-12-06 14:11:59 +00:00
|
|
|
"esbuild": "^0.15.18"
|
2022-03-30 12:42:19 +00:00
|
|
|
},
|
2022-11-07 15:05:12 +00:00
|
|
|
"peerDependencies": {
|
2023-08-18 16:49:34 +00:00
|
|
|
"astro": "workspace:^3.0.0-beta.4"
|
2022-11-07 15:05:12 +00:00
|
|
|
},
|
2022-03-30 12:42:19 +00:00
|
|
|
"devDependencies": {
|
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*"
|
|
|
|
}
|
|
|
|
}
|