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
Bjorn Lu 2e1321e9d5
Replace globby/fast-glob/tiny-glob with tinyglobby (#13299)
Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>


Co-authored-by: florian-lefebvre <69633530+florian-lefebvre@users.noreply.github.com>
Co-authored-by: ematipico <602478+ematipico@users.noreply.github.com>
2025-02-24 12:50:08 +00:00

66 lines
1.9 KiB
JSON

{
"name": "@astrojs/netlify",
"description": "Deploy your site to Netlify",
"version": "6.2.0",
"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",
"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.0",
"@netlify/functions": "^2.8.0",
"@vercel/nft": "^0.29.0",
"esbuild": "^0.24.0",
"tinyglobby": "^0.2.12",
"vite": "^6.0.7"
},
"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.7.3"
},
"astro": {
"external": true
}
}