astro/packages/integrations/deno/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "@astrojs/deno",
"description": "Deploy your site to a Deno server",
"version": "4.2.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"
},
2022-07-08 20:57:10 +00:00
"keywords": [
"withastro",
2022-07-08 20:57:10 +00:00
"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"
},
2023-05-17 08:54:00 +00:00
"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": {
2022-12-06 14:11:59 +00:00
"esbuild": "^0.15.18"
},
"peerDependencies": {
"astro": "workspace:^2.8.3"
},
"devDependencies": {
"astro": "workspace:*",
"astro-scripts": "workspace:*"
}
}