2022-03-25 16:08:02 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/netlify",
|
|
|
|
"description": "Deploy your site to Netlify",
|
2022-06-21 13:43:19 +00:00
|
|
|
"version": "0.4.5",
|
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"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
|
|
|
"homepage": "https://astro.build",
|
|
|
|
"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": {
|
2022-06-07 15:41:32 +00:00
|
|
|
"@astrojs/webapi": "^0.12.0",
|
|
|
|
"esbuild": "^0.14.42"
|
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-03-25 16:08:02 +00:00
|
|
|
"@netlify/functions": "^1.0.0",
|
2022-06-21 12:32:05 +00:00
|
|
|
"@types/node": "^14.18.20",
|
2022-03-25 16:08:02 +00:00
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*"
|
|
|
|
}
|
|
|
|
}
|