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