2022-03-28 08:05:55 -05:00
|
|
|
{
|
|
|
|
"name": "@astrojs/vercel",
|
|
|
|
"description": "Deploy your site to Vercel",
|
2023-01-03 17:23:30 -05:00
|
|
|
"version": "3.0.0-beta.0",
|
2022-03-28 08:05:55 -05:00
|
|
|
"type": "module",
|
|
|
|
"author": "withastro",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/withastro/astro.git",
|
|
|
|
"directory": "packages/integrations/vercel"
|
|
|
|
},
|
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-28 08:05:55 -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/vercel/",
|
2022-03-28 08:05:55 -05:00
|
|
|
"exports": {
|
2022-05-11 16:10:38 -05:00
|
|
|
"./edge": "./dist/edge/adapter.js",
|
|
|
|
"./edge/entrypoint": "./dist/edge/entrypoint.js",
|
|
|
|
"./serverless": "./dist/serverless/adapter.js",
|
|
|
|
"./serverless/entrypoint": "./dist/serverless/entrypoint.js",
|
2022-08-22 13:50:15 -05:00
|
|
|
"./static": "./dist/static/adapter.js",
|
2022-03-28 08:05:55 -05:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2022-05-12 16:59:07 -05:00
|
|
|
"typesVersions": {
|
|
|
|
"*": {
|
|
|
|
"edge": [
|
|
|
|
"dist/edge/adapter.d.ts"
|
|
|
|
],
|
|
|
|
"serverless": [
|
|
|
|
"dist/serverless/adapter.d.ts"
|
|
|
|
],
|
|
|
|
"static": [
|
|
|
|
"dist/static/adapter.d.ts"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2022-03-28 08:05:55 -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-07-27 10:50:48 -05:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
|
|
|
"test": "mocha --exit --timeout 20000 test/"
|
2022-03-28 08:05:55 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-10-31 09:21:09 -05:00
|
|
|
"@astrojs/webapi": "^1.1.1",
|
2022-11-14 13:42:35 -05:00
|
|
|
"@vercel/nft": "^0.22.1",
|
2022-12-02 18:38:40 -05:00
|
|
|
"fast-glob": "^3.2.11",
|
|
|
|
"set-cookie-parser": "^2.5.1"
|
2022-03-28 08:05:55 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-12-02 18:38:40 -05:00
|
|
|
"@types/set-cookie-parser": "^2.4.2",
|
2022-03-28 08:05:55 -05:00
|
|
|
"astro": "workspace:*",
|
2022-09-28 10:13:33 -05:00
|
|
|
"astro-scripts": "workspace:*",
|
|
|
|
"chai": "^4.3.6",
|
|
|
|
"mocha": "^9.2.2"
|
2022-03-28 08:05:55 -05:00
|
|
|
}
|
|
|
|
}
|