Fix out-of-date example dependencies (#7248)
* revert changeset patch * deps: bump astro across examples * deps: bump @astrojs packages across examples * deps: bump @astrojs/markdoc
This commit is contained in:
parent
ba865f5d64
commit
290e344dee
33 changed files with 211 additions and 198 deletions
|
@ -1,23 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
printWidth: 100,
|
|
||||||
semi: true,
|
|
||||||
singleQuote: true,
|
|
||||||
tabWidth: 2,
|
|
||||||
trailingComma: 'es5',
|
|
||||||
useTabs: true,
|
|
||||||
plugins: ['./node_modules/prettier-plugin-astro'],
|
|
||||||
overrides: [
|
|
||||||
{
|
|
||||||
files: ['.*', '*.json', '*.md', '*.toml', '*.yml'],
|
|
||||||
options: {
|
|
||||||
useTabs: false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
files: ['**/*.astro'],
|
|
||||||
options: {
|
|
||||||
parser: 'astro',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
32
.prettierrc.js
Normal file
32
.prettierrc.js
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
// Heads up: This file should be renamed to `.cjs`, however if we did that, changesets wouldn't be able to load it
|
||||||
|
module.exports = {
|
||||||
|
printWidth: 100,
|
||||||
|
semi: true,
|
||||||
|
singleQuote: true,
|
||||||
|
tabWidth: 2,
|
||||||
|
trailingComma: 'es5',
|
||||||
|
useTabs: true,
|
||||||
|
plugins: ['./node_modules/prettier-plugin-astro'],
|
||||||
|
overrides: [
|
||||||
|
{
|
||||||
|
// Changesets run Prettier using our configuration, however it uses a very old version of Prettier that does
|
||||||
|
// not support our plugin and it ends up doing more harm than good. As such, we'll disable our plugin for changelogs
|
||||||
|
files: ['CHANGELOG.md'],
|
||||||
|
options: {
|
||||||
|
plugins: [],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
files: ['.*', '*.json', '*.md', '*.toml', '*.yml'],
|
||||||
|
options: {
|
||||||
|
useTabs: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
files: ['**/*.astro'],
|
||||||
|
options: {
|
||||||
|
parser: 'astro',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
|
@ -11,6 +11,6 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.4.1"
|
"astro": "^2.5.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,9 +11,9 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/mdx": "^0.19.1",
|
"@astrojs/mdx": "^0.19.5",
|
||||||
"@astrojs/rss": "^2.4.1",
|
"@astrojs/rss": "^2.4.3",
|
||||||
"@astrojs/sitemap": "^1.3.0",
|
"@astrojs/sitemap": "^1.3.2",
|
||||||
"astro": "^2.4.1"
|
"astro": "^2.5.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
],
|
],
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^2.4.1"
|
"astro": "^2.5.6"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": "^2.0.0-beta.0"
|
"astro": "^2.0.0-beta.0"
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.4.1"
|
"astro": "^2.5.6"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/deno": "^4.1.0"
|
"@astrojs/deno": "^4.1.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,14 +12,14 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@algolia/client-search": "^4.17.0",
|
"@algolia/client-search": "^4.17.0",
|
||||||
"@astrojs/preact": "^2.1.0",
|
"@astrojs/preact": "^2.2.1",
|
||||||
"@astrojs/react": "^2.1.3",
|
"@astrojs/react": "^2.2.1",
|
||||||
"@docsearch/css": "^3.3.4",
|
"@docsearch/css": "^3.3.4",
|
||||||
"@docsearch/react": "^3.3.4",
|
"@docsearch/react": "^3.3.4",
|
||||||
"@types/node": "^18.16.3",
|
"@types/node": "^18.16.3",
|
||||||
"@types/react": "^18.2.5",
|
"@types/react": "^18.2.5",
|
||||||
"@types/react-dom": "^18.2.3",
|
"@types/react-dom": "^18.2.3",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"preact": "^10.13.2",
|
"preact": "^10.13.2",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.2.0"
|
"react-dom": "^18.2.0"
|
||||||
|
|
|
@ -11,9 +11,9 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/alpinejs": "^0.2.1",
|
"@astrojs/alpinejs": "^0.2.2",
|
||||||
"@types/alpinejs": "^3.7.1",
|
"@types/alpinejs": "^3.7.1",
|
||||||
"alpinejs": "^3.12.0",
|
"alpinejs": "^3.12.0",
|
||||||
"astro": "^2.4.1"
|
"astro": "^2.5.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,9 +11,9 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/lit": "^2.0.1",
|
"@astrojs/lit": "^2.0.2",
|
||||||
"@webcomponents/template-shadowroot": "^0.2.1",
|
"@webcomponents/template-shadowroot": "^0.2.1",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"lit": "^2.7.4"
|
"lit": "^2.7.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,12 +11,12 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/preact": "^2.1.0",
|
"@astrojs/preact": "^2.2.1",
|
||||||
"@astrojs/react": "^2.1.3",
|
"@astrojs/react": "^2.2.1",
|
||||||
"@astrojs/solid-js": "^2.1.1",
|
"@astrojs/solid-js": "^2.2.0",
|
||||||
"@astrojs/svelte": "^2.1.1",
|
"@astrojs/svelte": "^2.2.0",
|
||||||
"@astrojs/vue": "^2.1.1",
|
"@astrojs/vue": "^2.2.1",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"preact": "^10.13.2",
|
"preact": "^10.13.2",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.2.0",
|
||||||
|
|
|
@ -11,9 +11,9 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/preact": "^2.1.0",
|
"@astrojs/preact": "^2.2.1",
|
||||||
"@preact/signals": "^1.1.3",
|
"@preact/signals": "^1.1.3",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"preact": "^10.13.2"
|
"preact": "^10.13.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,10 +11,10 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/react": "^2.1.3",
|
"@astrojs/react": "^2.2.1",
|
||||||
"@types/react": "^18.2.5",
|
"@types/react": "^18.2.5",
|
||||||
"@types/react-dom": "^18.2.3",
|
"@types/react-dom": "^18.2.3",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.2.0"
|
"react-dom": "^18.2.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/solid-js": "^2.1.1",
|
"@astrojs/solid-js": "^2.2.0",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"solid-js": "^1.7.4"
|
"solid-js": "^1.7.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/svelte": "^2.1.1",
|
"@astrojs/svelte": "^2.2.0",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"svelte": "^3.58.0"
|
"svelte": "^3.58.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/vue": "^2.1.1",
|
"@astrojs/vue": "^2.2.1",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"vue": "^3.2.47"
|
"vue": "^3.2.47"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/node": "^5.1.2",
|
"@astrojs/node": "^5.1.4",
|
||||||
"astro": "^2.4.1"
|
"astro": "^2.5.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
],
|
],
|
||||||
"scripts": {},
|
"scripts": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"astro": "^2.4.1"
|
"astro": "^2.5.6"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": "^2.0.0-beta.0"
|
"astro": "^2.0.0-beta.0"
|
||||||
|
|
|
@ -12,8 +12,8 @@
|
||||||
"server": "node dist/server/entry.mjs"
|
"server": "node dist/server/entry.mjs"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/node": "^5.1.2",
|
"@astrojs/node": "^5.1.4",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"html-minifier": "^4.0.0"
|
"html-minifier": "^4.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.4.1"
|
"astro": "^2.5.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.4.1"
|
"astro": "^2.5.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.4.1"
|
"astro": "^2.5.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
"server": "node dist/server/entry.mjs"
|
"server": "node dist/server/entry.mjs"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/node": "^5.1.2",
|
"@astrojs/node": "^5.1.4",
|
||||||
"@astrojs/svelte": "^2.1.1",
|
"@astrojs/svelte": "^2.2.0",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"svelte": "^3.58.0"
|
"svelte": "^3.58.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/markdoc": "^0.2.0",
|
"@astrojs/markdoc": "^0.3.0",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"kleur": "^4.1.5"
|
"kleur": "^4.1.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/markdown-remark": "^2.2.0",
|
"@astrojs/markdown-remark": "^2.2.1",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"hast-util-select": "^5.0.5",
|
"hast-util-select": "^5.0.5",
|
||||||
"rehype-autolink-headings": "^6.1.1",
|
"rehype-autolink-headings": "^6.1.1",
|
||||||
"rehype-slug": "^5.1.0",
|
"rehype-slug": "^5.1.0",
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.4.1"
|
"astro": "^2.5.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,9 +11,9 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/mdx": "^0.19.1",
|
"@astrojs/mdx": "^0.19.5",
|
||||||
"@astrojs/preact": "^2.1.0",
|
"@astrojs/preact": "^2.2.1",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"preact": "^10.13.2"
|
"preact": "^10.13.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,9 +11,9 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/preact": "^2.1.0",
|
"@astrojs/preact": "^2.2.1",
|
||||||
"@nanostores/preact": "^0.4.1",
|
"@nanostores/preact": "^0.4.1",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"nanostores": "^0.8.1",
|
"nanostores": "^0.8.1",
|
||||||
"preact": "^10.13.2"
|
"preact": "^10.13.2"
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,10 +11,10 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/mdx": "^0.19.1",
|
"@astrojs/mdx": "^0.19.5",
|
||||||
"@astrojs/tailwind": "^3.1.2",
|
"@astrojs/tailwind": "^3.1.3",
|
||||||
"@types/canvas-confetti": "^1.6.0",
|
"@types/canvas-confetti": "^1.6.0",
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"autoprefixer": "^10.4.14",
|
"autoprefixer": "^10.4.14",
|
||||||
"canvas-confetti": "^1.6.0",
|
"canvas-confetti": "^1.6.0",
|
||||||
"postcss": "^8.4.23",
|
"postcss": "^8.4.23",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"astro": "astro"
|
"astro": "astro"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"vite-plugin-pwa": "0.14.7",
|
"vite-plugin-pwa": "0.14.7",
|
||||||
"workbox-window": "^6.5.4"
|
"workbox-window": "^6.5.4"
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"test": "vitest"
|
"test": "vitest"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"astro": "^2.4.1",
|
"astro": "^2.5.6",
|
||||||
"vitest": "^0.31.0"
|
"vitest": "^0.31.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"patchedDependencies": {
|
"patchedDependencies": {
|
||||||
"@changesets/cli@2.26.1": "patches/@changesets__cli@2.26.1.patch"
|
"@changesets/cli@2.23.0": "patches/@changesets__cli@2.23.0.patch"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -78,8 +78,8 @@
|
||||||
"astro-benchmark": "workspace:*"
|
"astro-benchmark": "workspace:*"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@changesets/changelog-github": "0.4.8",
|
"@changesets/changelog-github": "0.4.4",
|
||||||
"@changesets/cli": "2.26.1",
|
"@changesets/cli": "2.23.0",
|
||||||
"@types/node": "^18.7.21",
|
"@types/node": "^18.7.21",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
||||||
"@typescript-eslint/parser": "^5.58.0",
|
"@typescript-eslint/parser": "^5.58.0",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
diff --git a/dist/cli.cjs.dev.js b/dist/cli.cjs.dev.js
|
diff --git a/dist/cli.cjs.dev.js b/dist/cli.cjs.dev.js
|
||||||
index 73ab02a861b1f5a8e1bf10984340a0a6b1518b15..2309d78fb1ff07428bc76136d9eb4f4d8d6571cc 100644
|
index 5511d0c05d3b7472876dcc8410e938ccf612654f..aa75e3982b68e1226ba1877a7f32017e517480f5 100644
|
||||||
--- a/dist/cli.cjs.dev.js
|
--- a/dist/cli.cjs.dev.js
|
||||||
+++ b/dist/cli.cjs.dev.js
|
+++ b/dist/cli.cjs.dev.js
|
||||||
@@ -279,6 +279,9 @@ async function confirmMajorRelease(pkgJSON) {
|
@@ -279,6 +279,9 @@ async function confirmMajorRelease(pkgJSON) {
|
232
pnpm-lock.yaml
232
pnpm-lock.yaml
|
@ -6,9 +6,9 @@ overrides:
|
||||||
packageExtensionsChecksum: 01871422d489547c532184effb134b35
|
packageExtensionsChecksum: 01871422d489547c532184effb134b35
|
||||||
|
|
||||||
patchedDependencies:
|
patchedDependencies:
|
||||||
'@changesets/cli@2.26.1':
|
'@changesets/cli@2.23.0':
|
||||||
hash: rpibscpwt2erpjuy2wpxneagme
|
hash: kcozqtpxuwjzskw6zg5royevn4
|
||||||
path: patches/@changesets__cli@2.26.1.patch
|
path: patches/@changesets__cli@2.23.0.patch
|
||||||
|
|
||||||
importers:
|
importers:
|
||||||
|
|
||||||
|
@ -22,11 +22,11 @@ importers:
|
||||||
version: link:benchmark
|
version: link:benchmark
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@changesets/changelog-github':
|
'@changesets/changelog-github':
|
||||||
specifier: 0.4.8
|
specifier: 0.4.4
|
||||||
version: 0.4.8
|
version: 0.4.4
|
||||||
'@changesets/cli':
|
'@changesets/cli':
|
||||||
specifier: 2.26.1
|
specifier: 2.23.0
|
||||||
version: 2.26.1(patch_hash=rpibscpwt2erpjuy2wpxneagme)
|
version: 2.23.0(patch_hash=kcozqtpxuwjzskw6zg5royevn4)
|
||||||
'@types/node':
|
'@types/node':
|
||||||
specifier: ^18.7.21
|
specifier: ^18.7.21
|
||||||
version: 18.16.3
|
version: 18.16.3
|
||||||
|
@ -128,38 +128,38 @@ importers:
|
||||||
examples/basics:
|
examples/basics:
|
||||||
dependencies:
|
dependencies:
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
|
|
||||||
examples/blog:
|
examples/blog:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/mdx':
|
'@astrojs/mdx':
|
||||||
specifier: ^0.19.1
|
specifier: ^0.19.5
|
||||||
version: link:../../packages/integrations/mdx
|
version: link:../../packages/integrations/mdx
|
||||||
'@astrojs/rss':
|
'@astrojs/rss':
|
||||||
specifier: ^2.4.1
|
specifier: ^2.4.3
|
||||||
version: link:../../packages/astro-rss
|
version: link:../../packages/astro-rss
|
||||||
'@astrojs/sitemap':
|
'@astrojs/sitemap':
|
||||||
specifier: ^1.3.0
|
specifier: ^1.3.2
|
||||||
version: link:../../packages/integrations/sitemap
|
version: link:../../packages/integrations/sitemap
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
|
|
||||||
examples/component:
|
examples/component:
|
||||||
devDependencies:
|
devDependencies:
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
|
|
||||||
examples/deno:
|
examples/deno:
|
||||||
dependencies:
|
dependencies:
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@astrojs/deno':
|
'@astrojs/deno':
|
||||||
specifier: ^4.1.0
|
specifier: ^4.1.1
|
||||||
version: link:../../packages/integrations/deno
|
version: link:../../packages/integrations/deno
|
||||||
|
|
||||||
examples/docs:
|
examples/docs:
|
||||||
|
@ -168,10 +168,10 @@ importers:
|
||||||
specifier: ^4.17.0
|
specifier: ^4.17.0
|
||||||
version: 4.17.0
|
version: 4.17.0
|
||||||
'@astrojs/preact':
|
'@astrojs/preact':
|
||||||
specifier: ^2.1.0
|
specifier: ^2.2.1
|
||||||
version: link:../../packages/integrations/preact
|
version: link:../../packages/integrations/preact
|
||||||
'@astrojs/react':
|
'@astrojs/react':
|
||||||
specifier: ^2.1.3
|
specifier: ^2.2.1
|
||||||
version: link:../../packages/integrations/react
|
version: link:../../packages/integrations/react
|
||||||
'@docsearch/css':
|
'@docsearch/css':
|
||||||
specifier: ^3.3.4
|
specifier: ^3.3.4
|
||||||
|
@ -189,7 +189,7 @@ importers:
|
||||||
specifier: ^18.2.3
|
specifier: ^18.2.3
|
||||||
version: 18.2.3
|
version: 18.2.3
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
preact:
|
preact:
|
||||||
specifier: ^10.13.2
|
specifier: ^10.13.2
|
||||||
|
@ -208,7 +208,7 @@ importers:
|
||||||
examples/framework-alpine:
|
examples/framework-alpine:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/alpinejs':
|
'@astrojs/alpinejs':
|
||||||
specifier: ^0.2.1
|
specifier: ^0.2.2
|
||||||
version: link:../../packages/integrations/alpinejs
|
version: link:../../packages/integrations/alpinejs
|
||||||
'@types/alpinejs':
|
'@types/alpinejs':
|
||||||
specifier: ^3.7.1
|
specifier: ^3.7.1
|
||||||
|
@ -217,19 +217,19 @@ importers:
|
||||||
specifier: ^3.12.0
|
specifier: ^3.12.0
|
||||||
version: 3.12.0
|
version: 3.12.0
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
|
|
||||||
examples/framework-lit:
|
examples/framework-lit:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/lit':
|
'@astrojs/lit':
|
||||||
specifier: ^2.0.1
|
specifier: ^2.0.2
|
||||||
version: link:../../packages/integrations/lit
|
version: link:../../packages/integrations/lit
|
||||||
'@webcomponents/template-shadowroot':
|
'@webcomponents/template-shadowroot':
|
||||||
specifier: ^0.2.1
|
specifier: ^0.2.1
|
||||||
version: 0.2.1
|
version: 0.2.1
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
lit:
|
lit:
|
||||||
specifier: ^2.7.4
|
specifier: ^2.7.4
|
||||||
|
@ -238,22 +238,22 @@ importers:
|
||||||
examples/framework-multiple:
|
examples/framework-multiple:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/preact':
|
'@astrojs/preact':
|
||||||
specifier: ^2.1.0
|
specifier: ^2.2.1
|
||||||
version: link:../../packages/integrations/preact
|
version: link:../../packages/integrations/preact
|
||||||
'@astrojs/react':
|
'@astrojs/react':
|
||||||
specifier: ^2.1.3
|
specifier: ^2.2.1
|
||||||
version: link:../../packages/integrations/react
|
version: link:../../packages/integrations/react
|
||||||
'@astrojs/solid-js':
|
'@astrojs/solid-js':
|
||||||
specifier: ^2.1.1
|
specifier: ^2.2.0
|
||||||
version: link:../../packages/integrations/solid
|
version: link:../../packages/integrations/solid
|
||||||
'@astrojs/svelte':
|
'@astrojs/svelte':
|
||||||
specifier: ^2.1.1
|
specifier: ^2.2.0
|
||||||
version: link:../../packages/integrations/svelte
|
version: link:../../packages/integrations/svelte
|
||||||
'@astrojs/vue':
|
'@astrojs/vue':
|
||||||
specifier: ^2.1.1
|
specifier: ^2.2.1
|
||||||
version: link:../../packages/integrations/vue
|
version: link:../../packages/integrations/vue
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
preact:
|
preact:
|
||||||
specifier: ^10.13.2
|
specifier: ^10.13.2
|
||||||
|
@ -277,13 +277,13 @@ importers:
|
||||||
examples/framework-preact:
|
examples/framework-preact:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/preact':
|
'@astrojs/preact':
|
||||||
specifier: ^2.1.0
|
specifier: ^2.2.1
|
||||||
version: link:../../packages/integrations/preact
|
version: link:../../packages/integrations/preact
|
||||||
'@preact/signals':
|
'@preact/signals':
|
||||||
specifier: ^1.1.3
|
specifier: ^1.1.3
|
||||||
version: 1.1.3(preact@10.13.2)
|
version: 1.1.3(preact@10.13.2)
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
preact:
|
preact:
|
||||||
specifier: ^10.13.2
|
specifier: ^10.13.2
|
||||||
|
@ -292,7 +292,7 @@ importers:
|
||||||
examples/framework-react:
|
examples/framework-react:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/react':
|
'@astrojs/react':
|
||||||
specifier: ^2.1.3
|
specifier: ^2.2.1
|
||||||
version: link:../../packages/integrations/react
|
version: link:../../packages/integrations/react
|
||||||
'@types/react':
|
'@types/react':
|
||||||
specifier: ^18.2.5
|
specifier: ^18.2.5
|
||||||
|
@ -301,7 +301,7 @@ importers:
|
||||||
specifier: ^18.2.3
|
specifier: ^18.2.3
|
||||||
version: 18.2.3
|
version: 18.2.3
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
react:
|
react:
|
||||||
specifier: ^18.2.0
|
specifier: ^18.2.0
|
||||||
|
@ -313,10 +313,10 @@ importers:
|
||||||
examples/framework-solid:
|
examples/framework-solid:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/solid-js':
|
'@astrojs/solid-js':
|
||||||
specifier: ^2.1.1
|
specifier: ^2.2.0
|
||||||
version: link:../../packages/integrations/solid
|
version: link:../../packages/integrations/solid
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
solid-js:
|
solid-js:
|
||||||
specifier: ^1.7.4
|
specifier: ^1.7.4
|
||||||
|
@ -325,10 +325,10 @@ importers:
|
||||||
examples/framework-svelte:
|
examples/framework-svelte:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/svelte':
|
'@astrojs/svelte':
|
||||||
specifier: ^2.1.1
|
specifier: ^2.2.0
|
||||||
version: link:../../packages/integrations/svelte
|
version: link:../../packages/integrations/svelte
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
svelte:
|
svelte:
|
||||||
specifier: ^3.58.0
|
specifier: ^3.58.0
|
||||||
|
@ -337,10 +337,10 @@ importers:
|
||||||
examples/framework-vue:
|
examples/framework-vue:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/vue':
|
'@astrojs/vue':
|
||||||
specifier: ^2.1.1
|
specifier: ^2.2.1
|
||||||
version: link:../../packages/integrations/vue
|
version: link:../../packages/integrations/vue
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
vue:
|
vue:
|
||||||
specifier: ^3.2.47
|
specifier: ^3.2.47
|
||||||
|
@ -349,25 +349,25 @@ importers:
|
||||||
examples/hackernews:
|
examples/hackernews:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/node':
|
'@astrojs/node':
|
||||||
specifier: ^5.1.2
|
specifier: ^5.1.4
|
||||||
version: link:../../packages/integrations/node
|
version: link:../../packages/integrations/node
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
|
|
||||||
examples/integration:
|
examples/integration:
|
||||||
devDependencies:
|
devDependencies:
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
|
|
||||||
examples/middleware:
|
examples/middleware:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/node':
|
'@astrojs/node':
|
||||||
specifier: ^5.1.2
|
specifier: ^5.1.4
|
||||||
version: link:../../packages/integrations/node
|
version: link:../../packages/integrations/node
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
html-minifier:
|
html-minifier:
|
||||||
specifier: ^4.0.0
|
specifier: ^4.0.0
|
||||||
|
@ -376,31 +376,31 @@ importers:
|
||||||
examples/minimal:
|
examples/minimal:
|
||||||
dependencies:
|
dependencies:
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
|
|
||||||
examples/non-html-pages:
|
examples/non-html-pages:
|
||||||
dependencies:
|
dependencies:
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
|
|
||||||
examples/portfolio:
|
examples/portfolio:
|
||||||
dependencies:
|
dependencies:
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
|
|
||||||
examples/ssr:
|
examples/ssr:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/node':
|
'@astrojs/node':
|
||||||
specifier: ^5.1.2
|
specifier: ^5.1.4
|
||||||
version: link:../../packages/integrations/node
|
version: link:../../packages/integrations/node
|
||||||
'@astrojs/svelte':
|
'@astrojs/svelte':
|
||||||
specifier: ^2.1.1
|
specifier: ^2.2.0
|
||||||
version: link:../../packages/integrations/svelte
|
version: link:../../packages/integrations/svelte
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
svelte:
|
svelte:
|
||||||
specifier: ^3.58.0
|
specifier: ^3.58.0
|
||||||
|
@ -409,10 +409,10 @@ importers:
|
||||||
examples/with-markdoc:
|
examples/with-markdoc:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/markdoc':
|
'@astrojs/markdoc':
|
||||||
specifier: ^0.2.0
|
specifier: ^0.3.0
|
||||||
version: 0.2.0(astro@packages+astro)
|
version: link:../../packages/integrations/markdoc
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
kleur:
|
kleur:
|
||||||
specifier: ^4.1.5
|
specifier: ^4.1.5
|
||||||
|
@ -421,10 +421,10 @@ importers:
|
||||||
examples/with-markdown-plugins:
|
examples/with-markdown-plugins:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/markdown-remark':
|
'@astrojs/markdown-remark':
|
||||||
specifier: ^2.2.0
|
specifier: ^2.2.1
|
||||||
version: link:../../packages/markdown/remark
|
version: link:../../packages/markdown/remark
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
hast-util-select:
|
hast-util-select:
|
||||||
specifier: ^5.0.5
|
specifier: ^5.0.5
|
||||||
|
@ -445,19 +445,19 @@ importers:
|
||||||
examples/with-markdown-shiki:
|
examples/with-markdown-shiki:
|
||||||
dependencies:
|
dependencies:
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
|
|
||||||
examples/with-mdx:
|
examples/with-mdx:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/mdx':
|
'@astrojs/mdx':
|
||||||
specifier: ^0.19.1
|
specifier: ^0.19.5
|
||||||
version: link:../../packages/integrations/mdx
|
version: link:../../packages/integrations/mdx
|
||||||
'@astrojs/preact':
|
'@astrojs/preact':
|
||||||
specifier: ^2.1.0
|
specifier: ^2.2.1
|
||||||
version: link:../../packages/integrations/preact
|
version: link:../../packages/integrations/preact
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
preact:
|
preact:
|
||||||
specifier: ^10.13.2
|
specifier: ^10.13.2
|
||||||
|
@ -466,13 +466,13 @@ importers:
|
||||||
examples/with-nanostores:
|
examples/with-nanostores:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/preact':
|
'@astrojs/preact':
|
||||||
specifier: ^2.1.0
|
specifier: ^2.2.1
|
||||||
version: link:../../packages/integrations/preact
|
version: link:../../packages/integrations/preact
|
||||||
'@nanostores/preact':
|
'@nanostores/preact':
|
||||||
specifier: ^0.4.1
|
specifier: ^0.4.1
|
||||||
version: 0.4.1(nanostores@0.8.1)(preact@10.13.2)
|
version: 0.4.1(nanostores@0.8.1)(preact@10.13.2)
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
nanostores:
|
nanostores:
|
||||||
specifier: ^0.8.1
|
specifier: ^0.8.1
|
||||||
|
@ -484,16 +484,16 @@ importers:
|
||||||
examples/with-tailwindcss:
|
examples/with-tailwindcss:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/mdx':
|
'@astrojs/mdx':
|
||||||
specifier: ^0.19.1
|
specifier: ^0.19.5
|
||||||
version: link:../../packages/integrations/mdx
|
version: link:../../packages/integrations/mdx
|
||||||
'@astrojs/tailwind':
|
'@astrojs/tailwind':
|
||||||
specifier: ^3.1.2
|
specifier: ^3.1.3
|
||||||
version: link:../../packages/integrations/tailwind
|
version: link:../../packages/integrations/tailwind
|
||||||
'@types/canvas-confetti':
|
'@types/canvas-confetti':
|
||||||
specifier: ^1.6.0
|
specifier: ^1.6.0
|
||||||
version: 1.6.0
|
version: 1.6.0
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
autoprefixer:
|
autoprefixer:
|
||||||
specifier: ^10.4.14
|
specifier: ^10.4.14
|
||||||
|
@ -511,7 +511,7 @@ importers:
|
||||||
examples/with-vite-plugin-pwa:
|
examples/with-vite-plugin-pwa:
|
||||||
dependencies:
|
dependencies:
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
vite-plugin-pwa:
|
vite-plugin-pwa:
|
||||||
specifier: 0.14.7
|
specifier: 0.14.7
|
||||||
|
@ -523,7 +523,7 @@ importers:
|
||||||
examples/with-vitest:
|
examples/with-vitest:
|
||||||
dependencies:
|
dependencies:
|
||||||
astro:
|
astro:
|
||||||
specifier: ^2.4.1
|
specifier: ^2.5.6
|
||||||
version: link:../../packages/astro
|
version: link:../../packages/astro
|
||||||
vitest:
|
vitest:
|
||||||
specifier: ^0.31.0
|
specifier: ^0.31.0
|
||||||
|
@ -5527,6 +5527,11 @@ packages:
|
||||||
|
|
||||||
/@astrojs/compiler@1.4.0:
|
/@astrojs/compiler@1.4.0:
|
||||||
resolution: {integrity: sha512-Vav3a32Ct+omowV9X9kDM2ghWAvFdjZkv5BdvBjZCKYbFVT6//IZApDIVbHI1UPuLuD2sKyLWx2T+E7clqUJdg==}
|
resolution: {integrity: sha512-Vav3a32Ct+omowV9X9kDM2ghWAvFdjZkv5BdvBjZCKYbFVT6//IZApDIVbHI1UPuLuD2sKyLWx2T+E7clqUJdg==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@astrojs/compiler@1.4.2:
|
||||||
|
resolution: {integrity: sha512-xoRp7JpiMZPK/beUcZEM5kM44Z/h20wwwQcl54duPqQMyySG9vZ5xMM6dYiQmn7b3XzpZs0cT6TRDoJJ5gwHAQ==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@astrojs/language-server@1.0.0:
|
/@astrojs/language-server@1.0.0:
|
||||||
resolution: {integrity: sha512-oEw7AwJmzjgy6HC9f5IdrphZ1GVgfV/+7xQuyf52cpTiRWd/tJISK3MsKP0cDkVlfodmNABNFnAaAWuLZEiiiA==}
|
resolution: {integrity: sha512-oEw7AwJmzjgy6HC9f5IdrphZ1GVgfV/+7xQuyf52cpTiRWd/tJISK3MsKP0cDkVlfodmNABNFnAaAWuLZEiiiA==}
|
||||||
|
@ -5537,9 +5542,9 @@ packages:
|
||||||
'@vscode/emmet-helper': 2.8.8
|
'@vscode/emmet-helper': 2.8.8
|
||||||
events: 3.3.0
|
events: 3.3.0
|
||||||
prettier: 2.8.8
|
prettier: 2.8.8
|
||||||
prettier-plugin-astro: 0.8.0
|
prettier-plugin-astro: 0.8.1
|
||||||
synckit: 0.8.5
|
synckit: 0.8.5
|
||||||
vscode-css-languageservice: 6.2.5
|
vscode-css-languageservice: 6.2.6
|
||||||
vscode-html-languageservice: 5.0.5
|
vscode-html-languageservice: 5.0.5
|
||||||
vscode-languageserver: 8.1.0
|
vscode-languageserver: 8.1.0
|
||||||
vscode-languageserver-protocol: 3.17.3
|
vscode-languageserver-protocol: 3.17.3
|
||||||
|
@ -5548,24 +5553,6 @@ packages:
|
||||||
vscode-uri: 3.0.7
|
vscode-uri: 3.0.7
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@astrojs/markdoc@0.2.0(astro@packages+astro):
|
|
||||||
resolution: {integrity: sha512-sGDdUooNq7I7LDWOrzuAiNvZLqtWzUvMdmWA6O7y54zMVVCx4OPsLCd+oIUGvF5lZ+Yvv1dHGCM1fWnqOc+B4A==}
|
|
||||||
engines: {node: '>=16.12.0'}
|
|
||||||
peerDependencies:
|
|
||||||
astro: '*'
|
|
||||||
dependencies:
|
|
||||||
'@markdoc/markdoc': 0.2.2
|
|
||||||
astro: link:packages/astro
|
|
||||||
esbuild: 0.17.18
|
|
||||||
github-slugger: 2.0.0
|
|
||||||
gray-matter: 4.0.3
|
|
||||||
kleur: 4.1.5
|
|
||||||
zod: 3.20.6
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- '@types/react'
|
|
||||||
- react
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/@babel/code-frame@7.21.4:
|
/@babel/code-frame@7.21.4:
|
||||||
resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
|
resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
@ -7146,8 +7133,8 @@ packages:
|
||||||
'@changesets/types': 5.2.1
|
'@changesets/types': 5.2.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@changesets/changelog-github@0.4.8:
|
/@changesets/changelog-github@0.4.4:
|
||||||
resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==}
|
resolution: {integrity: sha512-htSILqCkyYtTB5/LoVKwx7GCJQGxAiBcYbfUKWiz/QoDARuM01owYtMXhV6/iytJZq/Dqqz3PjMZUNB4MphpbQ==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@changesets/get-github-info': 0.5.2
|
'@changesets/get-github-info': 0.5.2
|
||||||
'@changesets/types': 5.2.1
|
'@changesets/types': 5.2.1
|
||||||
|
@ -7156,8 +7143,8 @@ packages:
|
||||||
- encoding
|
- encoding
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@changesets/cli@2.26.1(patch_hash=rpibscpwt2erpjuy2wpxneagme):
|
/@changesets/cli@2.23.0(patch_hash=kcozqtpxuwjzskw6zg5royevn4):
|
||||||
resolution: {integrity: sha512-XnTa+b51vt057fyAudvDKGB0Sh72xutQZNAdXkCqPBKO2zvs2yYZx5hFZj1u9cbtpwM6Sxtcr02/FQJfZOzemQ==}
|
resolution: {integrity: sha512-Gi3tMi0Vr6eNd8GX6q73tbOm9XOzGfuLEm4PYVeWG2neg5DlRGNOjYwrFULJ/An3N9MHtHn4r5h1Qvnju9Ijug==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.21.5
|
'@babel/runtime': 7.21.5
|
||||||
|
@ -7168,12 +7155,12 @@ packages:
|
||||||
'@changesets/errors': 0.1.4
|
'@changesets/errors': 0.1.4
|
||||||
'@changesets/get-dependents-graph': 1.3.5
|
'@changesets/get-dependents-graph': 1.3.5
|
||||||
'@changesets/get-release-plan': 3.0.16
|
'@changesets/get-release-plan': 3.0.16
|
||||||
'@changesets/git': 2.0.0
|
'@changesets/git': 1.5.0
|
||||||
'@changesets/logger': 0.0.5
|
'@changesets/logger': 0.0.5
|
||||||
'@changesets/pre': 1.0.14
|
'@changesets/pre': 1.0.14
|
||||||
'@changesets/read': 0.5.9
|
'@changesets/read': 0.5.9
|
||||||
'@changesets/types': 5.2.1
|
'@changesets/types': 5.2.1
|
||||||
'@changesets/write': 0.2.3
|
'@changesets/write': 0.1.9
|
||||||
'@manypkg/get-packages': 1.1.3
|
'@manypkg/get-packages': 1.1.3
|
||||||
'@types/is-ci': 3.0.0
|
'@types/is-ci': 3.0.0
|
||||||
'@types/semver': 6.2.3
|
'@types/semver': 6.2.3
|
||||||
|
@ -7249,6 +7236,17 @@ packages:
|
||||||
resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==}
|
resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@changesets/git@1.5.0:
|
||||||
|
resolution: {integrity: sha512-Xo8AT2G7rQJSwV87c8PwMm6BAc98BnufRMsML7m7Iw8Or18WFvFmxqG5aOL5PBvhgq9KrKvaeIBNIymracSuHg==}
|
||||||
|
dependencies:
|
||||||
|
'@babel/runtime': 7.21.5
|
||||||
|
'@changesets/errors': 0.1.4
|
||||||
|
'@changesets/types': 5.2.1
|
||||||
|
'@manypkg/get-packages': 1.1.3
|
||||||
|
is-subdir: 1.2.0
|
||||||
|
spawndamnit: 2.0.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@changesets/git@2.0.0:
|
/@changesets/git@2.0.0:
|
||||||
resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==}
|
resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==}
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -7305,14 +7303,14 @@ packages:
|
||||||
resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==}
|
resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@changesets/write@0.2.3:
|
/@changesets/write@0.1.9:
|
||||||
resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==}
|
resolution: {integrity: sha512-E90ZrsrfJVOOQaP3Mm5Xd7uDwBAqq3z5paVEavTHKA8wxi7NAL8CmjgbGxSFuiP7ubnJA2BuHlrdE4z86voGOg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.21.5
|
'@babel/runtime': 7.21.5
|
||||||
'@changesets/types': 5.2.1
|
'@changesets/types': 5.2.1
|
||||||
fs-extra: 7.0.1
|
fs-extra: 7.0.1
|
||||||
human-id: 1.0.2
|
human-id: 1.0.2
|
||||||
prettier: 2.8.8
|
prettier: 1.19.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@cloudflare/kv-asset-handler@0.2.0:
|
/@cloudflare/kv-asset-handler@0.2.0:
|
||||||
|
@ -8088,21 +8086,6 @@ packages:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@markdoc/markdoc@0.2.2:
|
|
||||||
resolution: {integrity: sha512-0TiD9jmA5h5znN4lxo7HECAu3WieU5g5vUsfByeucrdR/x88hEilpt16EydFyJwJddQ/3w5HQgW7Ovy62r4cyw==}
|
|
||||||
engines: {node: '>=14.7.0'}
|
|
||||||
peerDependencies:
|
|
||||||
'@types/react': '*'
|
|
||||||
react: '*'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
'@types/react':
|
|
||||||
optional: true
|
|
||||||
react:
|
|
||||||
optional: true
|
|
||||||
optionalDependencies:
|
|
||||||
'@types/markdown-it': 12.2.3
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/@markdoc/markdoc@0.3.0:
|
/@markdoc/markdoc@0.3.0:
|
||||||
resolution: {integrity: sha512-QWCF8krIIw52ulflfnoff0yG1eKl9CCGA3KAiOjHyYtHNzSEouFh8lO52nAaO3qV2Ctj1GTB8TTb2rTfvISQfA==}
|
resolution: {integrity: sha512-QWCF8krIIw52ulflfnoff0yG1eKl9CCGA3KAiOjHyYtHNzSEouFh8lO52nAaO3qV2Ctj1GTB8TTb2rTfvISQfA==}
|
||||||
engines: {node: '>=14.7.0'}
|
engines: {node: '>=14.7.0'}
|
||||||
|
@ -9423,6 +9406,10 @@ packages:
|
||||||
resolution: {integrity: sha512-A3uY356uOU9nGa+TQIT/i3ziWUgJjVMUrGGXSrtRiTwklyCFjGVWIOHoEIHbJpiyhDkJd9kvIWUOfXK1IkK8XQ==}
|
resolution: {integrity: sha512-A3uY356uOU9nGa+TQIT/i3ziWUgJjVMUrGGXSrtRiTwklyCFjGVWIOHoEIHbJpiyhDkJd9kvIWUOfXK1IkK8XQ==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@vscode/l10n@0.0.14:
|
||||||
|
resolution: {integrity: sha512-/yrv59IEnmh655z1oeDnGcvMYwnEzNzHLgeYcQCkhYX0xBvYWrAuefoiLcPBUkMpJsb46bqQ6Yv4pwTTQ4d3Qg==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@vue/babel-helper-vue-transform-on@1.0.2:
|
/@vue/babel-helper-vue-transform-on@1.0.2:
|
||||||
resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==}
|
resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==}
|
||||||
dev: false
|
dev: false
|
||||||
|
@ -12438,7 +12425,7 @@ packages:
|
||||||
'@types/glob': 7.2.0
|
'@types/glob': 7.2.0
|
||||||
array-union: 2.1.0
|
array-union: 2.1.0
|
||||||
dir-glob: 3.0.1
|
dir-glob: 3.0.1
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.12
|
||||||
glob: 7.2.3
|
glob: 7.2.3
|
||||||
ignore: 5.2.4
|
ignore: 5.2.4
|
||||||
merge2: 1.4.1
|
merge2: 1.4.1
|
||||||
|
@ -12451,7 +12438,7 @@ packages:
|
||||||
dependencies:
|
dependencies:
|
||||||
array-union: 2.1.0
|
array-union: 2.1.0
|
||||||
dir-glob: 3.0.1
|
dir-glob: 3.0.1
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.12
|
||||||
ignore: 5.2.4
|
ignore: 5.2.4
|
||||||
merge2: 1.4.1
|
merge2: 1.4.1
|
||||||
slash: 3.0.0
|
slash: 3.0.0
|
||||||
|
@ -15601,11 +15588,28 @@ packages:
|
||||||
/prettier-plugin-astro@0.8.0:
|
/prettier-plugin-astro@0.8.0:
|
||||||
resolution: {integrity: sha512-kt9wk33J7HvFGwFaHb8piwy4zbUmabC8Nu+qCw493jhe96YkpjscqGBPy4nJ9TPy9pd7+kEx1zM81rp+MIdrXg==}
|
resolution: {integrity: sha512-kt9wk33J7HvFGwFaHb8piwy4zbUmabC8Nu+qCw493jhe96YkpjscqGBPy4nJ9TPy9pd7+kEx1zM81rp+MIdrXg==}
|
||||||
engines: {node: ^14.15.0 || >=16.0.0, pnpm: '>=7.14.0'}
|
engines: {node: ^14.15.0 || >=16.0.0, pnpm: '>=7.14.0'}
|
||||||
|
dependencies:
|
||||||
|
'@astrojs/compiler': 1.4.2
|
||||||
|
prettier: 2.8.8
|
||||||
|
sass-formatter: 0.7.6
|
||||||
|
synckit: 0.8.5
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/prettier-plugin-astro@0.8.1:
|
||||||
|
resolution: {integrity: sha512-lJ/mG/Lz/ccSwNtwqpFS126mtMVzFVyYv0ddTF9wqwrEG4seECjKDAyw/oGv915rAcJi8jr89990nqfpmG+qdg==}
|
||||||
|
engines: {node: ^14.15.0 || >=16.0.0, pnpm: '>=7.14.0'}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/compiler': 1.4.0
|
'@astrojs/compiler': 1.4.0
|
||||||
prettier: 2.8.8
|
prettier: 2.8.8
|
||||||
sass-formatter: 0.7.6
|
sass-formatter: 0.7.6
|
||||||
synckit: 0.8.5
|
synckit: 0.8.5
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/prettier@1.19.1:
|
||||||
|
resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==}
|
||||||
|
engines: {node: '>=4'}
|
||||||
|
hasBin: true
|
||||||
|
dev: true
|
||||||
|
|
||||||
/prettier@2.8.8:
|
/prettier@2.8.8:
|
||||||
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
|
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
|
||||||
|
@ -17835,10 +17839,10 @@ packages:
|
||||||
acorn-walk: 8.2.0
|
acorn-walk: 8.2.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/vscode-css-languageservice@6.2.5:
|
/vscode-css-languageservice@6.2.6:
|
||||||
resolution: {integrity: sha512-/1oyBZK3jfx6A0cA46FCUpy6OlqEsMT47LUIldCIP1YMKRYezJ9No+aNj9IM0AqhRZ92DxZ1DmU5lJ+biuiacA==}
|
resolution: {integrity: sha512-SA2WkeOecIpUiEbZnjOsP/fI5CRITZEiQGSHXKiDQDwLApfKcnLhZwMtOBbIifSzESVcQa7b/shX/nbnF4NoCg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vscode/l10n': 0.0.13
|
'@vscode/l10n': 0.0.14
|
||||||
vscode-languageserver-textdocument: 1.0.8
|
vscode-languageserver-textdocument: 1.0.8
|
||||||
vscode-languageserver-types: 3.17.3
|
vscode-languageserver-types: 3.17.3
|
||||||
vscode-uri: 3.0.7
|
vscode-uri: 3.0.7
|
||||||
|
|
Loading…
Reference in a new issue