summaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/package.json
blob: 9c33c8faaaab86847739d6301995ca90aa47a94f (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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
  "name": "@astrojs/vercel",
  "description": "Deploy your site to Vercel",
  "version": "4.0.0-rc.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": {
    "./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",
    "./analytics": "./dist/analytics.js",
    "./build-image-service": "./dist/image/build-service.js",
    "./dev-image-service": "./dist/image/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.23.1",
    "esbuild": "^0.19.2",
    "fast-glob": "^3.3.1",
    "set-cookie-parser": "^2.6.0",
    "web-vitals": "^3.4.0"
  },
  "peerDependencies": {
    "astro": "workspace:^3.0.0-rc.5"
  },
  "devDependencies": {
    "@types/set-cookie-parser": "^2.4.3",
    "@vercel/edge": "^1.0.0",
    "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"
  }
}