0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00
astro/packages/integrations/netlify/package.json
2025-02-06 13:24:08 +00:00

59 lines
1.8 KiB
JSON

{
"name": "@astrojs/netlify",
"description": "Deploy your site to Netlify",
"version": "6.1.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/adapters.git",
"directory": "packages/netlify"
},
"keywords": ["withastro", "astro-adapter"],
"bugs": "https://github.com/withastro/adapters/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",
"test": "astro-scripts test \"test/**/*.test.js\"",
"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": "0.5.1",
"@astrojs/underscore-redirects": "^0.6.0",
"@netlify/functions": "^2.8.0",
"@vercel/nft": "^0.29.0",
"esbuild": "^0.24.0",
"vite": "^6.0.7"
},
"peerDependencies": {
"astro": "^5.0.0"
},
"devDependencies": {
"@netlify/edge-functions": "^2.11.1",
"@netlify/edge-handler-types": "^0.34.1",
"@types/node": "^22.10.6",
"astro": "^5.1.6",
"astro-scripts": "workspace:*",
"cheerio": "1.0.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.3",
"strip-ansi": "^7.1.0",
"typescript": "^5.7.3"
},
"astro": {
"external": true
}
}