f5afaf2498
* Support re-exporting astro components containing client components * Include metadata for markdown too * Fix ssr, probably * Inject post-build * Remove tagName custom element test * Allows using the constructor for lit elements * Fix hoisted script scanning * Pass through plugin context * Get edge functions working in the edge tests * Fix types for the edge function integration * Upgrade the compiler * Upgrade compiler version * Better release notes for lit * Update .changeset/unlucky-hairs-camp.md Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> * Properly test that the draft was not rendered * Prevent from rendering draft posts * Add a changeset about the build perf improvement. Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
43 lines
1.4 KiB
JSON
43 lines
1.4 KiB
JSON
{
|
|
"name": "@astrojs/netlify",
|
|
"description": "Deploy your site to Netlify",
|
|
"version": "0.4.4",
|
|
"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",
|
|
"./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": "^0.12.0",
|
|
"esbuild": "^0.14.42"
|
|
},
|
|
"devDependencies": {
|
|
"@netlify/edge-handler-types": "^0.34.1",
|
|
"@netlify/functions": "^1.0.0",
|
|
"@types/node": "^14.18.20",
|
|
"astro": "workspace:*",
|
|
"astro-scripts": "workspace:*"
|
|
}
|
|
}
|