summaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/package.json
blob: 11074539b4c9d4f0955877face98788347d078ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
  "name": "@astrojs/vercel",
  "description": "Deploy your site to Vercel",
  "version": "3.0.0-beta.1",
  "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-beta.0",
    "@vercel/nft": "^0.22.1",
    "fast-glob": "^3.2.11",
    "set-cookie-parser": "^2.5.1"
  },
  "peerDependencies": {
    "astro": "workspace:^2.0.0-beta.3"
  },
  "devDependencies": {
    "@types/set-cookie-parser": "^2.4.2",
    "astro": "workspace:*",
    "astro-scripts": "workspace:*",
    "chai": "^4.3.6",
    "mocha": "^9.2.2"
  }
}