2022-03-28 08:05:55 -05:00
|
|
|
{
|
|
|
|
"name": "@astrojs/vercel",
|
|
|
|
"description": "Deploy your site to Vercel",
|
2024-03-20 10:16:06 -05:00
|
|
|
"version": "7.4.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": {
|
2024-03-20 09:34:39 -05:00
|
|
|
".": {
|
|
|
|
"types": "./types.d.ts"
|
|
|
|
},
|
2022-05-11 16:10:38 -05:00
|
|
|
"./serverless": "./dist/serverless/adapter.js",
|
|
|
|
"./serverless/entrypoint": "./dist/serverless/entrypoint.js",
|
2022-08-22 13:50:15 -05:00
|
|
|
"./static": "./dist/static/adapter.js",
|
2023-09-14 07:02:11 -05:00
|
|
|
"./speed-insights": "./dist/speed-insights.js",
|
2023-05-02 02:42:48 -05:00
|
|
|
"./build-image-service": "./dist/image/build-service.js",
|
|
|
|
"./dev-image-service": "./dist/image/dev-service.js",
|
2023-09-13 11:40:02 -05:00
|
|
|
"./squoosh-dev-service": "./dist/image/squoosh-dev-service.js",
|
2022-03-28 08:05:55 -05:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2022-05-12 16:59:07 -05:00
|
|
|
"typesVersions": {
|
|
|
|
"*": {
|
|
|
|
"serverless": [
|
|
|
|
"dist/serverless/adapter.d.ts"
|
|
|
|
],
|
|
|
|
"static": [
|
|
|
|
"dist/static/adapter.d.ts"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2023-05-17 03:54:00 -05:00
|
|
|
"files": [
|
2024-03-20 09:33:17 -05:00
|
|
|
"dist",
|
|
|
|
"types.d.ts"
|
2023-05-17 03:54:00 -05:00
|
|
|
],
|
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\"",
|
2024-02-16 11:20:49 -05:00
|
|
|
"test": "astro-scripts test --timeout 50000 \"test/**/!(hosted|edge-middleware).test.js\"",
|
|
|
|
"test:hosted": "astro-scripts test --timeout 30000 \"test/hosted/*.test.js\""
|
2022-03-28 08:05:55 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-08-01 06:05:59 -05:00
|
|
|
"@astrojs/internal-helpers": "workspace:*",
|
2023-08-24 03:34:33 -05:00
|
|
|
"@vercel/analytics": "^1.0.2",
|
2024-03-20 09:33:17 -05:00
|
|
|
"@vercel/edge": "^1.1.1",
|
2024-03-05 10:17:35 -05:00
|
|
|
"@vercel/nft": "^0.26.4",
|
2023-11-20 23:09:19 -05:00
|
|
|
"esbuild": "^0.19.6",
|
|
|
|
"fast-glob": "^3.3.2",
|
2023-06-21 08:09:49 -05:00
|
|
|
"set-cookie-parser": "^2.6.0",
|
2023-08-23 06:52:13 -05:00
|
|
|
"web-vitals": "^3.4.0"
|
2022-03-28 08:05:55 -05:00
|
|
|
},
|
2023-01-09 10:58:38 -05:00
|
|
|
"peerDependencies": {
|
2024-01-17 08:10:43 -05:00
|
|
|
"astro": "^4.2.0"
|
2023-01-09 10:58:38 -05:00
|
|
|
},
|
2022-03-28 08:05:55 -05:00
|
|
|
"devDependencies": {
|
2023-11-20 23:09:19 -05:00
|
|
|
"@types/set-cookie-parser": "^2.4.6",
|
2022-03-28 08:05:55 -05:00
|
|
|
"astro": "workspace:*",
|
2022-09-28 10:13:33 -05:00
|
|
|
"astro-scripts": "workspace:*",
|
2024-02-16 11:20:49 -05:00
|
|
|
"cheerio": "1.0.0-rc.12"
|
2023-10-03 09:25:25 -05:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"provenance": true
|
2022-03-28 08:05:55 -05:00
|
|
|
}
|
|
|
|
}
|