package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "@astrojs/vercel",
  3. "description": "Deploy your site to Vercel",
  4. "version": "7.3.1",
  5. "type": "module",
  6. "author": "withastro",
  7. "license": "MIT",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/withastro/astro.git",
  11. "directory": "packages/integrations/vercel"
  12. },
  13. "keywords": [
  14. "withastro",
  15. "astro-adapter"
  16. ],
  17. "bugs": "https://github.com/withastro/astro/issues",
  18. "homepage": "https://docs.astro.build/en/guides/integrations-guide/vercel/",
  19. "exports": {
  20. "./serverless": "./dist/serverless/adapter.js",
  21. "./serverless/entrypoint": "./dist/serverless/entrypoint.js",
  22. "./static": "./dist/static/adapter.js",
  23. "./speed-insights": "./dist/speed-insights.js",
  24. "./build-image-service": "./dist/image/build-service.js",
  25. "./dev-image-service": "./dist/image/dev-service.js",
  26. "./squoosh-dev-service": "./dist/image/squoosh-dev-service.js",
  27. "./package.json": "./package.json"
  28. },
  29. "typesVersions": {
  30. "*": {
  31. "edge": [
  32. "dist/edge/adapter.d.ts"
  33. ],
  34. "serverless": [
  35. "dist/serverless/adapter.d.ts"
  36. ],
  37. "static": [
  38. "dist/static/adapter.d.ts"
  39. ]
  40. }
  41. },
  42. "files": [
  43. "dist"
  44. ],
  45. "scripts": {
  46. "build": "astro-scripts build \"src/**/*.ts\" && tsc",
  47. "build:ci": "astro-scripts build \"src/**/*.ts\"",
  48. "dev": "astro-scripts dev \"src/**/*.ts\"",
  49. "test": "astro-scripts test --timeout 50000 \"test/**/!(hosted|edge-middleware).test.js\"",
  50. "test:hosted": "astro-scripts test --timeout 30000 \"test/hosted/*.test.js\""
  51. },
  52. "dependencies": {
  53. "@astrojs/internal-helpers": "workspace:*",
  54. "@vercel/analytics": "^1.0.2",
  55. "@vercel/nft": "^0.24.3",
  56. "esbuild": "^0.19.6",
  57. "fast-glob": "^3.3.2",
  58. "set-cookie-parser": "^2.6.0",
  59. "web-vitals": "^3.4.0"
  60. },
  61. "peerDependencies": {
  62. "astro": "^4.2.0"
  63. },
  64. "devDependencies": {
  65. "@types/set-cookie-parser": "^2.4.6",
  66. "@vercel/edge": "^1.1.1",
  67. "astro": "workspace:*",
  68. "astro-scripts": "workspace:*",
  69. "cheerio": "1.0.0-rc.12"
  70. },
  71. "publishConfig": {
  72. "provenance": true
  73. }
  74. }