2022-03-28 13:05:55 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/vercel",
|
|
|
|
"description": "Deploy your site to Vercel",
|
2023-02-23 20:50:11 +00:00
|
|
|
"version": "3.1.3",
|
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"
|
|
|
|
},
|
2022-07-08 20:57:10 +00:00
|
|
|
"keywords": [
|
2022-08-30 20:19:19 +00:00
|
|
|
"withastro",
|
2022-07-08 20:57:10 +00:00
|
|
|
"astro-adapter"
|
|
|
|
],
|
2022-03-28 13:05:55 +00:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 19:10:34 +00:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/vercel/",
|
2022-03-28 13:05:55 +00:00
|
|
|
"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",
|
2022-08-22 18:50:15 +00:00
|
|
|
"./static": "./dist/static/adapter.js",
|
2023-02-08 16:32:20 +00:00
|
|
|
"./analytics": "./dist/analytics.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-07-27 15:50:48 +00:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
|
|
|
"test": "mocha --exit --timeout 20000 test/"
|
2022-03-28 13:05:55 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-02-17 18:44:15 +00:00
|
|
|
"@astrojs/webapi": "^2.0.1",
|
2023-02-08 16:32:20 +00:00
|
|
|
"@vercel/analytics": "^0.1.8",
|
2022-11-14 18:42:35 +00:00
|
|
|
"@vercel/nft": "^0.22.1",
|
2022-12-02 23:38:40 +00:00
|
|
|
"fast-glob": "^3.2.11",
|
2023-02-08 16:32:20 +00:00
|
|
|
"set-cookie-parser": "^2.5.1",
|
|
|
|
"web-vitals": "^3.1.1"
|
2022-03-28 13:05:55 +00:00
|
|
|
},
|
2023-01-09 15:58:38 +00:00
|
|
|
"peerDependencies": {
|
2023-02-23 20:50:11 +00:00
|
|
|
"astro": "workspace:^2.0.15"
|
2023-01-09 15:58:38 +00:00
|
|
|
},
|
2022-03-28 13:05:55 +00:00
|
|
|
"devDependencies": {
|
2022-12-02 23:38:40 +00:00
|
|
|
"@types/set-cookie-parser": "^2.4.2",
|
2022-03-28 13:05:55 +00:00
|
|
|
"astro": "workspace:*",
|
2022-09-28 15:13:33 +00:00
|
|
|
"astro-scripts": "workspace:*",
|
|
|
|
"chai": "^4.3.6",
|
|
|
|
"mocha": "^9.2.2"
|
2022-03-28 13:05:55 +00:00
|
|
|
}
|
|
|
|
}
|