mirror of
https://github.com/withastro/astro.git
synced 2025-01-27 22:19:04 -05:00
d6edc75408
* quality of life updates for `App` (#9579) * feat(app): writeResponse for node-based adapters * add changeset * Apply suggestions from code review Co-authored-by: Emanuele Stoppa <my.burning@gmail.com> * Apply suggestions from code review Co-authored-by: Emanuele Stoppa <my.burning@gmail.com> * add examples for NodeApp static methods * unexpose createOutgoingHttpHeaders from public api * move headers test to core * clientAddress test * cookies test * destructure renderOptions right at the start --------- Co-authored-by: Emanuele Stoppa <my.burning@gmail.com> * Fallback node standalone to localhost (#9545) * Fallback node standalone to localhost * Update .changeset/tame-squids-film.md * quality of life updates for the node adapter (#9582) * descriptive names for files and functions * update tests * add changeset * appease linter * Apply suggestions from code review Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> * `server-entrypoint.js` -> `server.js` * prevent crash on stream error (from PR 9533) * Apply suggestions from code review Co-authored-by: Luiz Ferraz <luiz@lferraz.com> * `127.0.0.1` -> `localhost` * add changeset for fryuni's fix * Apply suggestions from code review * Apply suggestions from code review Co-authored-by: Emanuele Stoppa <my.burning@gmail.com> --------- Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Luiz Ferraz <luiz@lferraz.com> Co-authored-by: Emanuele Stoppa <my.burning@gmail.com> * chore(vercel): delete request response conversion logic (#9583) * refactor * add changeset * bump peer dependencies * unexpose symbols (#9683) * Update .changeset/tame-squids-film.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> --------- Co-authored-by: Arsh <69170106+lilnasy@users.noreply.github.com> Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Luiz Ferraz <luiz@lferraz.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
77 lines
2.1 KiB
JSON
77 lines
2.1 KiB
JSON
{
|
|
"name": "@astrojs/vercel",
|
|
"description": "Deploy your site to Vercel",
|
|
"version": "6.1.4",
|
|
"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": {
|
|
"./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",
|
|
"./squoosh-dev-service": "./dist/image/squoosh-dev-service.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"edge": [
|
|
"dist/edge/adapter.d.ts"
|
|
],
|
|
"serverless": [
|
|
"dist/serverless/adapter.d.ts"
|
|
],
|
|
"static": [
|
|
"dist/static/adapter.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"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 --file \"./test/setup.js\" test/ --ignore test/hosted",
|
|
"test:hosted": "mocha --exit --timeout 30000 test/hosted"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/internal-helpers": "workspace:*",
|
|
"@vercel/analytics": "^1.0.2",
|
|
"@vercel/nft": "^0.24.3",
|
|
"esbuild": "^0.19.6",
|
|
"fast-glob": "^3.3.2",
|
|
"set-cookie-parser": "^2.6.0",
|
|
"web-vitals": "^3.4.0"
|
|
},
|
|
"peerDependencies": {
|
|
"astro": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/set-cookie-parser": "^2.4.6",
|
|
"@vercel/edge": "^1.1.1",
|
|
"astro": "workspace:*",
|
|
"astro-scripts": "workspace:*",
|
|
"chai": "^4.3.7",
|
|
"chai-jest-snapshot": "^2.0.0",
|
|
"cheerio": "1.0.0-rc.12",
|
|
"mocha": "^10.2.0"
|
|
},
|
|
"publishConfig": {
|
|
"provenance": true
|
|
}
|
|
}
|