aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/package.json
diff options
context:
space:
mode:
authorGravatar github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 2025-06-05 14:25:23 +0000
committerGravatar github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 2025-06-05 14:25:23 +0000
commite586d7d704d475afe3373a1de6ae20d504f79d6d (patch)
tree7e3fa24807cebd48a86bd40f866d792181191ee9 /packages/integrations/netlify/package.json
downloadastro-latest.tar.gz
astro-latest.tar.zst
astro-latest.zip
Sync from a8e1c0a7402940e0fc5beef669522b315052df1blatest
Diffstat (limited to 'packages/integrations/netlify/package.json')
-rw-r--r--packages/integrations/netlify/package.json63
1 files changed, 63 insertions, 0 deletions
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
new file mode 100644
index 000000000..d197157aa
--- /dev/null
+++ b/packages/integrations/netlify/package.json
@@ -0,0 +1,63 @@
+{
+ "name": "@astrojs/netlify",
+ "description": "Deploy your site to Netlify",
+ "version": "6.3.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.2.0",
+ "@netlify/functions": "^3.1.5",
+ "@vercel/nft": "^0.29.2",
+ "esbuild": "^0.25.0",
+ "tinyglobby": "^0.2.13",
+ "vite": "^6.3.5"
+ },
+ "peerDependencies": {
+ "astro": "^5.3.0"
+ },
+ "devDependencies": {
+ "@types/node": "^22.10.6",
+ "astro": "workspace:*",
+ "astro-scripts": "workspace:*",
+ "cheerio": "1.0.0",
+ "devalue": "^5.1.1",
+ "typescript": "^5.8.3"
+ },
+ "astro": {
+ "external": true
+ }
+}