@astrojs/netlify
Version:
Deploy your site to Netlify
66 lines • 1.97 kB
JSON
{
"name": "@astrojs/netlify",
"description": "Deploy your site to Netlify",
"version": "6.5.6",
"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"
],
"dependencies": {
"@netlify/blobs": "^10.0.5",
"@netlify/functions": "^4.1.11",
"@netlify/vite-plugin": "^2.5.4",
"@vercel/nft": "^0.29.2",
"esbuild": "^0.25.0",
"tinyglobby": "^0.2.13",
"vite": "^6.3.5",
"@astrojs/internal-helpers": "0.7.1",
"@astrojs/underscore-redirects": "1.0.0"
},
"peerDependencies": {
"astro": "^5.3.0"
},
"devDependencies": {
"@types/node": "^22.10.6",
"cheerio": "1.0.0",
"devalue": "^5.1.1",
"typescript": "^5.8.3",
"astro-scripts": "0.0.14",
"astro": "5.12.8"
},
"astro": {
"external": true
},
"scripts": {
"dev": "astro-scripts dev \"src/**/*.ts\"",
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"test": "pnpm run test-fn && pnpm run test-static && pnpm run test:dev",
"test-fn": "astro-scripts test \"test/functions/*.test.js\"",
"test:dev": "astro-scripts test \"test/development/*.test.js\"",
"test-static": "astro-scripts test \"test/static/*.test.js\"",
"test:hosted": "astro-scripts test \"test/hosted/*.test.js\""
}
}