2022-03-28 13:05:55 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/vercel",
|
|
|
|
"description": "Deploy your site to Vercel",
|
2022-06-30 18:39:44 +00:00
|
|
|
"version": "0.2.4",
|
2022-03-28 13:05:55 +00:00
|
|
|
"type": "module",
|
|
|
|
"author": "withastro",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/withastro/astro.git",
|
|
|
|
"directory": "packages/integrations/vercel"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
|
|
|
"homepage": "https://astro.build",
|
|
|
|
"exports": {
|
2022-05-11 21:10:38 +00:00
|
|
|
"./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",
|
2022-03-28 13:05:55 +00:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2022-05-12 21:59:07 +00:00
|
|
|
"typesVersions": {
|
|
|
|
"*": {
|
|
|
|
"edge": [
|
|
|
|
"dist/edge/adapter.d.ts"
|
|
|
|
],
|
|
|
|
"serverless": [
|
|
|
|
"dist/serverless/adapter.d.ts"
|
|
|
|
],
|
|
|
|
"static": [
|
|
|
|
"dist/static/adapter.d.ts"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2022-03-28 13:05:55 +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-28 13:05:55 +00:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-05-23 17:26:07 +00:00
|
|
|
"@astrojs/webapi": "^0.12.0",
|
2022-05-11 21:10:38 +00:00
|
|
|
"@vercel/nft": "^0.18.2"
|
2022-03-28 13:05:55 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*"
|
|
|
|
}
|
|
|
|
}
|