2022-03-28 10:05:55 -03:00
|
|
|
{
|
|
|
|
"name": "@astrojs/vercel",
|
|
|
|
"description": "Deploy your site to Vercel",
|
2025-02-06 09:05:36 +00:00
|
|
|
"version": "8.0.6",
|
2022-03-28 10:05:55 -03:00
|
|
|
"type": "module",
|
|
|
|
"author": "withastro",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2024-08-29 09:39:46 +02:00
|
|
|
"url": "https://github.com/withastro/adapters.git",
|
|
|
|
"directory": "packages/vercel"
|
2022-03-28 10:05:55 -03:00
|
|
|
},
|
2024-09-17 07:56:08 +02:00
|
|
|
"keywords": ["withastro", "astro-adapter"],
|
2024-08-29 09:39:46 +02:00
|
|
|
"bugs": "https://github.com/withastro/adapters/issues",
|
2022-07-11 21:10:34 +02:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/vercel/",
|
2022-03-28 10:05:55 -03:00
|
|
|
"exports": {
|
2024-10-25 13:10:12 +01:00
|
|
|
".": "./dist/index.js",
|
|
|
|
"./entrypoint": "./dist/serverless/entrypoint.js",
|
2022-05-11 18:10:38 -03: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-05-02 09:42:48 +02:00
|
|
|
"./build-image-service": "./dist/image/build-service.js",
|
|
|
|
"./dev-image-service": "./dist/image/dev-service.js",
|
2022-03-28 10:05:55 -03:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2022-05-12 18:59:07 -03:00
|
|
|
"typesVersions": {
|
|
|
|
"*": {
|
2024-09-17 07:56:08 +02:00
|
|
|
"serverless": ["dist/serverless/adapter.d.ts"],
|
|
|
|
"static": ["dist/static/adapter.d.ts"]
|
2022-05-12 18:59:07 -03:00
|
|
|
}
|
|
|
|
},
|
2024-09-17 07:56:08 +02:00
|
|
|
"files": ["dist", "types.d.ts"],
|
2022-03-28 10:05:55 -03:00
|
|
|
"scripts": {
|
2024-08-29 07:56:05 +02:00
|
|
|
"build": "tsc",
|
2024-06-11 09:32:17 -04:00
|
|
|
"test": "astro-scripts test --timeout 50000 \"test/**/!(hosted).test.js\"",
|
2024-02-16 16:20:49 +00:00
|
|
|
"test:hosted": "astro-scripts test --timeout 30000 \"test/hosted/*.test.js\""
|
2022-03-28 10:05:55 -03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2025-01-07 23:36:12 +08:00
|
|
|
"@astrojs/internal-helpers": "^0.4.2",
|
2024-11-27 16:22:39 +08:00
|
|
|
"@vercel/analytics": "^1.4.1",
|
2025-01-14 10:47:30 +08:00
|
|
|
"@vercel/edge": "^1.2.1",
|
2025-01-07 23:36:12 +08:00
|
|
|
"@vercel/nft": "^0.29.0",
|
2025-02-06 09:03:29 +00:00
|
|
|
"@vercel/routing-utils": "5.0.2",
|
2024-10-31 16:48:02 +08:00
|
|
|
"esbuild": "^0.24.0",
|
2025-01-14 10:47:30 +08:00
|
|
|
"fast-glob": "^3.3.3"
|
2022-03-28 10:05:55 -03:00
|
|
|
},
|
2023-01-09 10:58:38 -05:00
|
|
|
"peerDependencies": {
|
2024-11-28 11:44:09 +00:00
|
|
|
"astro": "^5.0.0"
|
2023-01-09 10:58:38 -05:00
|
|
|
},
|
2022-03-28 10:05:55 -03:00
|
|
|
"devDependencies": {
|
2024-08-29 08:47:15 +02:00
|
|
|
"@astrojs/test-utils": "workspace:*",
|
2025-01-14 10:47:30 +08:00
|
|
|
"astro": "^5.1.6",
|
2022-09-28 23:13:33 +08:00
|
|
|
"astro-scripts": "workspace:*",
|
2024-08-13 22:29:37 +08:00
|
|
|
"cheerio": "1.0.0"
|
2023-10-03 16:25:25 +02:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"provenance": true
|
2022-03-28 10:05:55 -03:00
|
|
|
}
|
|
|
|
}
|