5b3f96c48e
* [ci] release * Update changelogs (#5955) * [ci] release * Wrap astro 2.0 beta logs in `<details>` * Add link to docs upgrade guide * First pass cleaning up 2.0 release notes * mdx changes from Sarah * combine 5584 and 5842 in deno, image, netlify * markdown/remark incl (5684 & 5769) to match mdx * Tweak markdown/remark formatting * Format astro-prism * Format astro-rss * Format create-astro * Format cloudflare * Format lit * Format partytown * Format node * Format preact * Format react * Format solid * Format svelte * Format tailwind * Format vercel * Format vue * Format telemetry * Format webapi * Format scripts * Reinstate h3s for headings Co-authored-by: Ben Holmes <hey@bholmes.dev> * Reformat mdx * astro & markdown/remark: Combine #5679 & #5684 changelogs Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Chris Swithinbank <swithinbank@gmail.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Ben Holmes <hey@bholmes.dev> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Matthew Phillips <matthew@skypack.dev> Co-authored-by: Chris Swithinbank <swithinbank@gmail.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Ben Holmes <hey@bholmes.dev>
62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "@astrojs/vercel",
|
|
"description": "Deploy your site to Vercel",
|
|
"version": "3.0.0",
|
|
"type": "module",
|
|
"author": "withastro",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/withastro/astro.git",
|
|
"directory": "packages/integrations/vercel"
|
|
},
|
|
"keywords": [
|
|
"withastro",
|
|
"astro-adapter"
|
|
],
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/vercel/",
|
|
"exports": {
|
|
"./edge": "./dist/edge/adapter.js",
|
|
"./edge/entrypoint": "./dist/edge/entrypoint.js",
|
|
"./serverless": "./dist/serverless/adapter.js",
|
|
"./serverless/entrypoint": "./dist/serverless/entrypoint.js",
|
|
"./static": "./dist/static/adapter.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"edge": [
|
|
"dist/edge/adapter.d.ts"
|
|
],
|
|
"serverless": [
|
|
"dist/serverless/adapter.d.ts"
|
|
],
|
|
"static": [
|
|
"dist/static/adapter.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
|
"test": "mocha --exit --timeout 20000 test/"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/webapi": "^2.0.0",
|
|
"@vercel/nft": "^0.22.1",
|
|
"fast-glob": "^3.2.11",
|
|
"set-cookie-parser": "^2.5.1"
|
|
},
|
|
"peerDependencies": {
|
|
"astro": "workspace:^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/set-cookie-parser": "^2.4.2",
|
|
"astro": "workspace:*",
|
|
"astro-scripts": "workspace:*",
|
|
"chai": "^4.3.6",
|
|
"mocha": "^9.2.2"
|
|
}
|
|
}
|