astro/packages/renderers/renderer-svelte/package.json
moritzlaube 344866762c
Update svelte version in renderer-svelte (#2300)
* Update svelte version in renderer-svelte

I am having funny console logs saying that my svelte component `received an unexpected slot "default".`. This issue is described here: https://github.com/sveltejs/kit/issues/981

Supposedly, updating svelte to version 3.44.3 solves this issue. I couldn't test it, though.

* Update Svelte to 3.44.3 to get rid of console warning that component receives an unexpected slot "default".
2022-01-04 10:17:21 -05:00

30 lines
784 B
JSON

{
"name": "@astrojs/renderer-svelte",
"version": "0.3.0",
"description": "Use Svelte components within Astro",
"type": "module",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/astro.git",
"directory": "packages/renderers/renderer-svelte"
},
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://astro.build",
"exports": {
".": "./index.js",
"./*": "./*",
"./client.js": "./client.js",
"./server.js": "./server.js",
"./package.json": "./package.json"
},
"dependencies": {
"@sveltejs/vite-plugin-svelte": "1.0.0-next.30",
"svelte": "^3.44.3",
"svelte-preprocess": "^4.9.8"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
}