0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00
astro/packages/integrations/vercel/package.json

61 lines
1.7 KiB
JSON
Raw Normal View History

2022-03-28 10:05:55 -03:00
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
"version": "8.0.0-alpha.1",
2022-03-28 10:05:55 -03:00
"type": "module",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/astro.git",
"directory": "packages/integrations/vercel"
},
2024-08-29 08:45:22 +02:00
"keywords": ["withastro", "astro-adapter"],
2022-03-28 10:05:55 -03:00
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://docs.astro.build/en/guides/integrations-guide/vercel/",
2022-03-28 10:05:55 -03:00
"exports": {
2024-03-20 14:34:39 +00:00
".": {
"types": "./types.d.ts"
},
"./serverless": "./dist/serverless/adapter.js",
"./serverless/entrypoint": "./dist/serverless/entrypoint.js",
"./static": "./dist/static/adapter.js",
"./speed-insights": "./dist/speed-insights.js",
"./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"
},
"typesVersions": {
"*": {
2024-08-29 08:45:22 +02:00
"serverless": ["dist/serverless/adapter.d.ts"],
"static": ["dist/static/adapter.d.ts"]
}
},
2024-08-29 08:45:22 +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",
"test": "astro-scripts test --timeout 50000 \"test/**/!(hosted).test.js\"",
"test:hosted": "astro-scripts test --timeout 30000 \"test/hosted/*.test.js\""
2022-03-28 10:05:55 -03:00
},
"dependencies": {
2024-08-29 07:34:36 +02:00
"@astrojs/internal-helpers": "^0.4.1",
"@vercel/analytics": "^1.3.1",
"@vercel/edge": "^1.1.2",
"@vercel/nft": "^0.27.3",
"esbuild": "^0.21.5",
"fast-glob": "^3.3.2",
"web-vitals": "^3.5.2"
2022-03-28 10:05:55 -03:00
},
"peerDependencies": {
"astro": "^5.0.0-alpha.0"
},
2022-03-28 10:05:55 -03:00
"devDependencies": {
2024-08-29 07:34:36 +02:00
"astro": "^4.14.6",
2022-09-28 23:13:33 +08:00
"astro-scripts": "workspace:*",
"cheerio": "1.0.0"
},
"publishConfig": {
"provenance": true
2022-03-28 10:05:55 -03:00
}
}