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