2ba3bd9c16
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
"name": "@astrojs/netlify",
|
|
"description": "Deploy your site to Netlify",
|
|
"version": "2.0.0-beta.0",
|
|
"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",
|
|
"./functions": "./dist/integration-functions.js",
|
|
"./netlify-functions.js": "./dist/netlify-functions.js",
|
|
"./edge-functions": "./dist/integration-edge-functions.js",
|
|
"./netlify-edge-functions.js": "./dist/netlify-edge-functions.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
|
"test-fn": "mocha --exit --timeout 20000 test/functions/",
|
|
"test-edge": "deno test --allow-run --allow-read --allow-net ./test/edge-functions/",
|
|
"test": "npm run test-fn"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/webapi": "^1.1.1",
|
|
"esbuild": "^0.15.18"
|
|
},
|
|
"devDependencies": {
|
|
"@netlify/edge-handler-types": "^0.34.1",
|
|
"@netlify/functions": "^1.0.0",
|
|
"@types/node": "^14.18.20",
|
|
"astro": "workspace:*",
|
|
"astro-scripts": "workspace:*",
|
|
"chai": "^4.3.6",
|
|
"cheerio": "^1.0.0-rc.11",
|
|
"mocha": "^9.2.2",
|
|
"vite": "^4.0.3"
|
|
}
|
|
}
|