2022-03-25 16:08:02 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/netlify",
|
|
|
|
"description": "Deploy your site to Netlify",
|
2023-06-06 15:32:10 +00:00
|
|
|
"version": "2.3.0",
|
2022-03-25 16:08:02 +00:00
|
|
|
"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"
|
|
|
|
},
|
2022-07-08 20:57:10 +00:00
|
|
|
"keywords": [
|
2022-08-30 20:19:19 +00:00
|
|
|
"withastro",
|
2022-07-08 20:57:10 +00:00
|
|
|
"astro-adapter"
|
|
|
|
],
|
2022-03-25 16:08:02 +00:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 19:10:34 +00:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/netlify/",
|
2022-03-25 16:08:02 +00:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
|
|
|
"./functions": "./dist/integration-functions.js",
|
|
|
|
"./netlify-functions.js": "./dist/netlify-functions.js",
|
2022-04-19 15:22:15 +00:00
|
|
|
"./edge-functions": "./dist/integration-edge-functions.js",
|
|
|
|
"./netlify-edge-functions.js": "./dist/netlify-edge-functions.js",
|
2022-03-25 16:08:02 +00:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2023-05-17 08:54:00 +00:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2022-03-25 16:08:02 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
2022-04-13 17:31:50 +00:00
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
2022-04-06 20:21:46 +00:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
2023-07-13 08:21:33 +00:00
|
|
|
"test-fn": "mocha --exit --timeout 20000 --file \"./test/setup.js\" test/functions/",
|
2023-02-21 14:14:47 +00:00
|
|
|
"test-edge": "deno test --allow-run --allow-read --allow-net --allow-env ./test/edge-functions/",
|
2022-06-17 22:12:04 +00:00
|
|
|
"test": "npm run test-fn"
|
2022-03-25 16:08:02 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-06-05 13:03:20 +00:00
|
|
|
"@astrojs/underscore-redirects": "^0.1.0",
|
2023-05-30 20:53:55 +00:00
|
|
|
"@astrojs/webapi": "^2.2.0",
|
2023-06-21 13:09:49 +00:00
|
|
|
"@netlify/functions": "^1.6.0",
|
2022-12-06 14:11:59 +00:00
|
|
|
"esbuild": "^0.15.18"
|
2022-03-25 16:08:02 +00:00
|
|
|
},
|
2023-01-09 15:58:38 +00:00
|
|
|
"peerDependencies": {
|
2023-07-11 14:27:04 +00:00
|
|
|
"astro": "workspace:^2.8.1"
|
2023-01-09 15:58:38 +00:00
|
|
|
},
|
2022-03-25 16:08:02 +00:00
|
|
|
"devDependencies": {
|
2023-04-06 19:40:50 +00:00
|
|
|
"@netlify/edge-functions": "^2.0.0",
|
2022-04-22 14:03:25 +00:00
|
|
|
"@netlify/edge-handler-types": "^0.34.1",
|
2023-06-21 13:09:49 +00:00
|
|
|
"@types/node": "^14.18.51",
|
2022-03-25 16:08:02 +00:00
|
|
|
"astro": "workspace:*",
|
2022-09-28 15:13:33 +00:00
|
|
|
"astro-scripts": "workspace:*",
|
2023-06-21 13:09:49 +00:00
|
|
|
"chai": "^4.3.7",
|
|
|
|
"cheerio": "1.0.0-rc.12",
|
2022-09-28 15:13:33 +00:00
|
|
|
"mocha": "^9.2.2",
|
2023-07-13 08:21:33 +00:00
|
|
|
"vite": "^4.3.9",
|
|
|
|
"chai-jest-snapshot": "^2.0.0"
|
2023-02-06 20:17:34 +00:00
|
|
|
},
|
|
|
|
"astro": {
|
|
|
|
"external": true
|
2022-03-25 16:08:02 +00:00
|
|
|
}
|
|
|
|
}
|