summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/package.json
blob: 8c9c24e54bd3def067254e846200e70b7738e68b (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
{
  "name": "@astrojs/netlify",
  "description": "Deploy your site to Netlify",
  "version": "6.2.4",
  "type": "module",
  "types": "./dist/index.d.ts",
  "author": "withastro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/withastro/astro.git",
    "directory": "packages/integrations/netlify"
  },
  "keywords": [
    "withastro",
    "astro-adapter"
  ],
  "bugs": "https://github.com/withastro/astro/issues",
  "homepage": "https://docs.astro.build/en/guides/integrations-guide/netlify/",
  "exports": {
    ".": "./dist/index.js",
    "./static": "./dist/static.js",
    "./functions": "./dist/functions.js",
    "./ssr-function.js": "./dist/ssr-function.js",
    "./image-service.js": "./dist/image-service.js",
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "astro-scripts build \"src/**/*.ts\" && tsc",
    "build:ci": "astro-scripts build \"src/**/*.ts\"",
    "test": "pnpm run test-fn && pnpm run test-static",
    "test-fn": "astro-scripts test \"test/functions/*.test.js\"",
    "test-static": "astro-scripts test \"test/static/*.test.js\"",
    "test:hosted": "astro-scripts test \"test/hosted/*.test.js\""
  },
  "dependencies": {
    "@astrojs/internal-helpers": "workspace:*",
    "@astrojs/underscore-redirects": "workspace:*",
    "@netlify/blobs": "^8.1.1",
    "@netlify/functions": "^3.0.1",
    "@vercel/nft": "^0.29.2",
    "esbuild": "^0.25.0",
    "tinyglobby": "^0.2.12",
    "vite": "^6.2.4"
  },
  "peerDependencies": {
    "astro": "^5.3.0"
  },
  "devDependencies": {
    "@netlify/edge-functions": "^2.11.1",
    "@netlify/edge-handler-types": "^0.34.1",
    "@types/node": "^22.10.6",
    "astro": "workspace:*",
    "astro-scripts": "workspace:*",
    "cheerio": "1.0.0",
    "devalue": "^5.1.1",
    "execa": "^8.0.1",
    "strip-ansi": "^7.1.0",
    "typescript": "^5.8.2"
  },
  "astro": {
    "external": true
  }
}