c2b14d5253
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"name": "@astrojs/vercel",
|
|
"description": "Deploy your site to Vercel",
|
|
"version": "0.2.6",
|
|
"type": "module",
|
|
"author": "withastro",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/withastro/astro.git",
|
|
"directory": "packages/integrations/vercel"
|
|
},
|
|
"keywords": [
|
|
"astro-adapter"
|
|
],
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/vercel/",
|
|
"exports": {
|
|
"./edge": "./dist/edge/adapter.js",
|
|
"./edge/entrypoint": "./dist/edge/entrypoint.js",
|
|
"./serverless": "./dist/serverless/adapter.js",
|
|
"./serverless/entrypoint": "./dist/serverless/entrypoint.js",
|
|
"./static": "./dist/serverless/adapter.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"edge": [
|
|
"dist/edge/adapter.d.ts"
|
|
],
|
|
"serverless": [
|
|
"dist/serverless/adapter.d.ts"
|
|
],
|
|
"static": [
|
|
"dist/static/adapter.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/webapi": "^0.12.0",
|
|
"@vercel/nft": "^0.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"astro": "workspace:*",
|
|
"astro-scripts": "workspace:*"
|
|
}
|
|
}
|