2022-03-25 16:08:02 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/netlify",
|
|
|
|
"description": "Deploy your site to Netlify",
|
2023-02-01 19:38:18 +00:00
|
|
|
"version": "2.1.1",
|
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"
|
|
|
|
},
|
|
|
|
"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\"",
|
2022-04-19 15:22:15 +00:00
|
|
|
"test-fn": "mocha --exit --timeout 20000 test/functions/",
|
|
|
|
"test-edge": "deno test --allow-run --allow-read --allow-net ./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-01-24 16:38:06 +00:00
|
|
|
"@astrojs/webapi": "^2.0.0",
|
2023-02-01 19:33:37 +00:00
|
|
|
"@netlify/functions": "^1.0.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-02-02 20:38:04 +00:00
|
|
|
"astro": "workspace:^2.0.6"
|
2023-01-09 15:58:38 +00:00
|
|
|
},
|
2022-03-25 16:08:02 +00:00
|
|
|
"devDependencies": {
|
2022-04-22 14:03:25 +00:00
|
|
|
"@netlify/edge-handler-types": "^0.34.1",
|
2022-06-21 12:32:05 +00:00
|
|
|
"@types/node": "^14.18.20",
|
2022-03-25 16:08:02 +00:00
|
|
|
"astro": "workspace:*",
|
2022-09-28 15:13:33 +00:00
|
|
|
"astro-scripts": "workspace:*",
|
|
|
|
"chai": "^4.3.6",
|
|
|
|
"cheerio": "^1.0.0-rc.11",
|
|
|
|
"mocha": "^9.2.2",
|
2023-01-03 18:24:49 +00:00
|
|
|
"vite": "^4.0.3"
|
2022-03-25 16:08:02 +00:00
|
|
|
}
|
|
|
|
}
|