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
github-actions[bot] 2b3179b7eb [ci] release (#529)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-02-06 09:05:36 +00:00

59 lines
1.7 KiB
JSON

{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
"version": "8.0.6",
"type": "module",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/adapters.git",
"directory": "packages/vercel"
},
"keywords": ["withastro", "astro-adapter"],
"bugs": "https://github.com/withastro/adapters/issues",
"homepage": "https://docs.astro.build/en/guides/integrations-guide/vercel/",
"exports": {
".": "./dist/index.js",
"./entrypoint": "./dist/serverless/entrypoint.js",
"./serverless": "./dist/serverless/adapter.js",
"./serverless/entrypoint": "./dist/serverless/entrypoint.js",
"./static": "./dist/static/adapter.js",
"./build-image-service": "./dist/image/build-service.js",
"./dev-image-service": "./dist/image/dev-service.js",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"serverless": ["dist/serverless/adapter.d.ts"],
"static": ["dist/static/adapter.d.ts"]
}
},
"files": ["dist", "types.d.ts"],
"scripts": {
"build": "tsc",
"test": "astro-scripts test --timeout 50000 \"test/**/!(hosted).test.js\"",
"test:hosted": "astro-scripts test --timeout 30000 \"test/hosted/*.test.js\""
},
"dependencies": {
"@astrojs/internal-helpers": "^0.4.2",
"@vercel/analytics": "^1.4.1",
"@vercel/edge": "^1.2.1",
"@vercel/nft": "^0.29.0",
"@vercel/routing-utils": "5.0.2",
"esbuild": "^0.24.0",
"fast-glob": "^3.3.3"
},
"peerDependencies": {
"astro": "^5.0.0"
},
"devDependencies": {
"@astrojs/test-utils": "workspace:*",
"astro": "^5.1.6",
"astro-scripts": "workspace:*",
"cheerio": "1.0.0"
},
"publishConfig": {
"provenance": true
}
}