diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index bd1eced30..a43082025 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -12,5 +12,8 @@ "@astrojs/preact": "^0.0.1", "astro": "^0.25.0-next.0", "sass": "^1.49.9" + }, + "dependencies": { + "preact": "^10.6.6" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 5377a5bc9..2ba6740f3 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,5 +11,8 @@ "devDependencies": { "astro": "^0.25.0-next.0", "@astrojs/preact": "^0.0.1" + }, + "dependencies": { + "preact": "^10.6.6" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index 56ed7f3a9..6e02cb255 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -13,6 +13,7 @@ "@docsearch/css": "^3.0.0", "@docsearch/react": "^3.0.0", "@types/react": "^17.0.40", + "preact": "^10.6.6", "react": "^17.0.2", "react-dom": "^17.0.2" }, diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index 65a9482b3..d63b6fbf8 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -11,5 +11,9 @@ "devDependencies": { "@astrojs/lit": "^0.0.1", "astro": "^0.25.0-next.0" + }, + "dependencies": { + "@webcomponents/template-shadowroot": "^0.1.0", + "lit": "^2.1.3" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index f5e1a3713..fb1c0b4c0 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -16,5 +16,15 @@ "@astrojs/svelte": "^0.0.1", "@astrojs/vue": "^0.0.1", "astro": "^0.25.0-next.0" + }, + "dependencies": { + "@webcomponents/template-shadowroot": "^0.1.0", + "lit": "^2.1.3", + "preact": "^10.6.6", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "solid-js": "^1.3.13", + "svelte": "^3.46.4", + "vue": "^3.2.31" } } diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 5fbc015f7..e7e092e36 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,5 +11,8 @@ "devDependencies": { "@astrojs/preact": "^0.0.1", "astro": "^0.25.0-next.0" + }, + "dependencies": { + "preact": "^10.6.6" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 1ddd252f8..43481f330 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -11,5 +11,9 @@ "devDependencies": { "@astrojs/react": "^0.0.1", "astro": "^0.25.0-next.0" + }, + "dependencies": { + "react": "^17.0.2", + "react-dom": "^17.0.2" } } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index a726c29c8..b6f4feefb 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,5 +11,8 @@ "devDependencies": { "@astrojs/solid-js": "^0.0.1", "astro": "^0.25.0-next.0" + }, + "dependencies": { + "solid-js": "^1.3.6" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index d5a97d07e..f1d5b1ec7 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -11,5 +11,8 @@ "devDependencies": { "@astrojs/svelte": "^0.0.1", "astro": "^0.25.0-next.0" + }, + "dependencies": { + "svelte": "^3.46.4" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index a9f115e0a..b215f7b37 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,5 +11,8 @@ "devDependencies": { "@astrojs/vue": "^0.0.1", "astro": "^0.25.0-next.0" + }, + "dependencies": { + "vue": "^3.2.30" } } diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json index cc91b7d96..77b4d6e4f 100644 --- a/examples/integrations-playground/package.json +++ b/examples/integrations-playground/package.json @@ -16,5 +16,15 @@ "@astrojs/tailwind": "^0.0.1", "@astrojs/turbolinks": "^0.0.1", "astro": "^0.25.0-next.0" + }, + "dependencies": { + "@webcomponents/template-shadowroot": "^0.1.0", + "lit": "^2.1.3", + "preact": "^10.6.6", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "solid-js": "^1.3.13", + "svelte": "^3.46.4", + "vue": "^3.2.31" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 4130db624..5b6790371 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -12,5 +12,8 @@ "@astrojs/preact": "^0.0.1", "astro": "^0.25.0-next.0", "sass": "^1.49.9" + }, + "dependencies": { + "preact": "^10.6.6" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index de0bfb00a..a7b4bacd0 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -18,5 +18,8 @@ "lightcookie": "^1.0.25", "unocss": "^0.15.6", "vite-imagetools": "^4.0.3" + }, + "dependencies": { + "svelte": "^3.46.4" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index 41e721b3d..8c3283e5a 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -12,5 +12,9 @@ "@astrojs/react": "^0.0.1", "astro": "^0.25.0-next.0", "sass": "^1.49.9" + }, + "dependencies": { + "react": "^17.0.2", + "react-dom": "^17.0.2" } } diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index fde4cb089..6b4bef816 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -15,5 +15,12 @@ "@astrojs/svelte": "^0.0.1", "@astrojs/vue": "^0.0.1", "astro": "^0.25.0-next.0" + }, + "dependencies": { + "preact": "^10.6.6", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "svelte": "^3.46.4", + "vue": "^3.2.31" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ed0491c96..cb0896db5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -45,6 +45,9 @@ importers: specifiers: '@astrojs/preact': ^0.0.1 astro: ^0.25.0-next.0 + preact: ^10.6.6 + dependencies: + preact: 10.6.6 devDependencies: '@astrojs/preact': link:../../packages/integrations/preact astro: link:../../packages/astro @@ -53,7 +56,10 @@ importers: specifiers: '@astrojs/preact': ^0.0.1 astro: ^0.25.0-next.0 + preact: ^10.6.6 sass: ^1.49.9 + dependencies: + preact: 10.6.6 devDependencies: '@astrojs/preact': link:../../packages/integrations/preact astro: link:../../packages/astro @@ -85,6 +91,7 @@ importers: '@docsearch/react': ^3.0.0 '@types/react': ^17.0.40 astro: ^0.25.0-next.0 + preact: ^10.6.6 react: ^17.0.2 react-dom: ^17.0.2 dependencies: @@ -92,6 +99,7 @@ importers: '@docsearch/css': 3.0.0 '@docsearch/react': 3.0.0_480a8db74f6ad30acbb587f476cf6f4e '@types/react': 17.0.40 + preact: 10.6.6 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 devDependencies: @@ -114,7 +122,12 @@ importers: examples/framework-lit: specifiers: '@astrojs/lit': ^0.0.1 + '@webcomponents/template-shadowroot': ^0.1.0 astro: ^0.25.0-next.0 + lit: ^2.1.3 + dependencies: + '@webcomponents/template-shadowroot': 0.1.0 + lit: 2.2.1 devDependencies: '@astrojs/lit': link:../../packages/integrations/lit astro: link:../../packages/astro @@ -127,7 +140,24 @@ importers: '@astrojs/solid-js': ^0.0.1 '@astrojs/svelte': ^0.0.1 '@astrojs/vue': ^0.0.1 + '@webcomponents/template-shadowroot': ^0.1.0 astro: ^0.25.0-next.0 + lit: ^2.1.3 + preact: ^10.6.6 + react: ^17.0.2 + react-dom: ^17.0.2 + solid-js: ^1.3.13 + svelte: ^3.46.4 + vue: ^3.2.31 + dependencies: + '@webcomponents/template-shadowroot': 0.1.0 + lit: 2.2.1 + preact: 10.6.6 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + solid-js: 1.3.13 + svelte: 3.46.4 + vue: 3.2.31 devDependencies: '@astrojs/lit': link:../../packages/integrations/lit '@astrojs/preact': link:../../packages/integrations/preact @@ -141,6 +171,9 @@ importers: specifiers: '@astrojs/preact': ^0.0.1 astro: ^0.25.0-next.0 + preact: ^10.6.6 + dependencies: + preact: 10.6.6 devDependencies: '@astrojs/preact': link:../../packages/integrations/preact astro: link:../../packages/astro @@ -149,6 +182,11 @@ importers: specifiers: '@astrojs/react': ^0.0.1 astro: ^0.25.0-next.0 + react: ^17.0.2 + react-dom: ^17.0.2 + dependencies: + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 devDependencies: '@astrojs/react': link:../../packages/integrations/react astro: link:../../packages/astro @@ -157,6 +195,9 @@ importers: specifiers: '@astrojs/solid-js': ^0.0.1 astro: ^0.25.0-next.0 + solid-js: ^1.3.6 + dependencies: + solid-js: 1.3.13 devDependencies: '@astrojs/solid-js': link:../../packages/integrations/solid astro: link:../../packages/astro @@ -165,6 +206,9 @@ importers: specifiers: '@astrojs/svelte': ^0.0.1 astro: ^0.25.0-next.0 + svelte: ^3.46.4 + dependencies: + svelte: 3.46.4 devDependencies: '@astrojs/svelte': link:../../packages/integrations/svelte astro: link:../../packages/astro @@ -173,6 +217,9 @@ importers: specifiers: '@astrojs/vue': ^0.0.1 astro: ^0.25.0-next.0 + vue: ^3.2.30 + dependencies: + vue: 3.2.31 devDependencies: '@astrojs/vue': link:../../packages/integrations/vue astro: link:../../packages/astro @@ -185,7 +232,24 @@ importers: '@astrojs/sitemap': ^0.0.1 '@astrojs/tailwind': ^0.0.1 '@astrojs/turbolinks': ^0.0.1 + '@webcomponents/template-shadowroot': ^0.1.0 astro: ^0.25.0-next.0 + lit: ^2.1.3 + preact: ^10.6.6 + react: ^17.0.2 + react-dom: ^17.0.2 + solid-js: ^1.3.13 + svelte: ^3.46.4 + vue: ^3.2.31 + dependencies: + '@webcomponents/template-shadowroot': 0.1.0 + lit: 2.2.1 + preact: 10.6.6 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + solid-js: 1.3.13 + svelte: 3.46.4 + vue: 3.2.31 devDependencies: '@astrojs/lit': link:../../packages/integrations/lit '@astrojs/partytown': link:../../packages/integrations/partytown @@ -211,7 +275,10 @@ importers: specifiers: '@astrojs/preact': ^0.0.1 astro: ^0.25.0-next.0 + preact: ^10.6.6 sass: ^1.49.9 + dependencies: + preact: 10.6.6 devDependencies: '@astrojs/preact': link:../../packages/integrations/preact astro: link:../../packages/astro @@ -223,8 +290,11 @@ importers: astro: ^0.25.0-next.0 concurrently: ^7.0.0 lightcookie: ^1.0.25 + svelte: ^3.46.4 unocss: ^0.15.6 vite-imagetools: ^4.0.3 + dependencies: + svelte: 3.46.4 devDependencies: '@astrojs/svelte': link:../../packages/integrations/svelte astro: link:../../packages/astro @@ -243,7 +313,12 @@ importers: specifiers: '@astrojs/react': ^0.0.1 astro: ^0.25.0-next.0 + react: ^17.0.2 + react-dom: ^17.0.2 sass: ^1.49.9 + dependencies: + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 devDependencies: '@astrojs/react': link:../../packages/integrations/react astro: link:../../packages/astro @@ -257,6 +332,17 @@ importers: '@astrojs/svelte': ^0.0.1 '@astrojs/vue': ^0.0.1 astro: ^0.25.0-next.0 + preact: ^10.6.6 + react: ^17.0.2 + react-dom: ^17.0.2 + svelte: ^3.46.4 + vue: ^3.2.31 + dependencies: + preact: 10.6.6 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + svelte: 3.46.4 + vue: 3.2.31 devDependencies: '@astrojs/markdown-remark': link:../../packages/markdown/remark '@astrojs/preact': link:../../packages/integrations/preact