feat: enable nuxt studio
This commit is contained in:
60
.github/workflows/deploy.yml
vendored
60
.github/workflows/deploy.yml
vendored
@@ -1,60 +0,0 @@
|
|||||||
# GitHub Actions workflow for deploying Nuxt to GitHub Pages
|
|
||||||
name: Deploy to GitHub Pages
|
|
||||||
|
|
||||||
on:
|
|
||||||
# Runs on pushes targeting the default branch
|
|
||||||
push:
|
|
||||||
branches: ['main']
|
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pages: write
|
|
||||||
id-token: write
|
|
||||||
|
|
||||||
# Allow only one concurrent deployment
|
|
||||||
concurrency:
|
|
||||||
group: 'pages'
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Setup pnpm
|
|
||||||
uses: pnpm/action-setup@v4
|
|
||||||
with:
|
|
||||||
version: latest
|
|
||||||
|
|
||||||
- name: Setup Node.js
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: '22'
|
|
||||||
cache: 'pnpm'
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: pnpm install
|
|
||||||
|
|
||||||
- name: Generate static site
|
|
||||||
run: pnpm run generate
|
|
||||||
|
|
||||||
- name: Upload artifact
|
|
||||||
uses: actions/upload-pages-artifact@v3
|
|
||||||
with:
|
|
||||||
path: .output/public
|
|
||||||
|
|
||||||
deploy:
|
|
||||||
environment:
|
|
||||||
name: github-pages
|
|
||||||
url: ${{ steps.deployment.outputs.page_url }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: build
|
|
||||||
steps:
|
|
||||||
- name: Deploy to GitHub Pages
|
|
||||||
id: deployment
|
|
||||||
uses: actions/deploy-pages@v4
|
|
||||||
@@ -5,9 +5,6 @@ const props = defineProps<{
|
|||||||
project: ProjectsCollectionItem
|
project: ProjectsCollectionItem
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
const { app } = useRuntimeConfig()
|
|
||||||
const withBase = (path: string) => `${app.baseURL}${path.startsWith('/') ? path.slice(1) : path}`
|
|
||||||
|
|
||||||
const isMediumScreen = useMediaQuery('(min-width: 768px)')
|
const isMediumScreen = useMediaQuery('(min-width: 768px)')
|
||||||
const descToggled = ref<boolean>(false)
|
const descToggled = ref<boolean>(false)
|
||||||
const popupImageToggled = ref<boolean>(false)
|
const popupImageToggled = ref<boolean>(false)
|
||||||
@@ -55,8 +52,8 @@ function handleToggle() {
|
|||||||
<img v-if="popupImageToggled" class="popup-close" src="~/assets/icons/times-bazaar-white.svg" alt="" @click="popupImageToggled = false" />
|
<img v-if="popupImageToggled" class="popup-close" src="~/assets/icons/times-bazaar-white.svg" alt="" @click="popupImageToggled = false" />
|
||||||
</header>
|
</header>
|
||||||
<div class="image-wrap">
|
<div class="image-wrap">
|
||||||
<img :src="withBase(project.image)" :alt="project.title" />
|
<img :src="project.image" :alt="project.title" />
|
||||||
<img v-if="popupImageToggled" :src="withBase(project.popupImage!)" :alt="project.title" />
|
<img v-if="popupImageToggled" :src="project.popupImage" :alt="project.title" />
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -1,14 +1,6 @@
|
|||||||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||||
export default defineNuxtConfig({
|
export default defineNuxtConfig({
|
||||||
compatibilityDate: '2025-07-15',
|
compatibilityDate: '2025-07-15',
|
||||||
$production: {
|
|
||||||
app: {
|
|
||||||
baseURL: '/la-boite-aux-lettres/'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
content: {
|
|
||||||
experimental: { nativeSqlite: true }
|
|
||||||
},
|
|
||||||
devtools: { enabled: true },
|
devtools: { enabled: true },
|
||||||
css: ['@unocss/reset/eric-meyer.css'],
|
css: ['@unocss/reset/eric-meyer.css'],
|
||||||
fonts: {
|
fonts: {
|
||||||
@@ -20,6 +12,15 @@ export default defineNuxtConfig({
|
|||||||
modules: [
|
modules: [
|
||||||
'@nuxt/content',
|
'@nuxt/content',
|
||||||
'@nuxt/fonts',
|
'@nuxt/fonts',
|
||||||
'@vueuse/nuxt'
|
'@vueuse/nuxt',
|
||||||
]
|
'nuxt-studio'
|
||||||
|
],
|
||||||
|
studio: {
|
||||||
|
repository: {
|
||||||
|
provider: 'github',
|
||||||
|
owner: 'wazolab',
|
||||||
|
repo: 'la-boite-aux-lettres',
|
||||||
|
branch: 'main'
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
@@ -16,6 +16,7 @@
|
|||||||
"@vueuse/core": "^14.1.0",
|
"@vueuse/core": "^14.1.0",
|
||||||
"@vueuse/nuxt": "14.1.0",
|
"@vueuse/nuxt": "14.1.0",
|
||||||
"nuxt": "^4.2.1",
|
"nuxt": "^4.2.1",
|
||||||
|
"nuxt-studio": "1.1.0",
|
||||||
"vue": "^3.5.25",
|
"vue": "^3.5.25",
|
||||||
"vue-router": "^4.6.3"
|
"vue-router": "^4.6.3"
|
||||||
}
|
}
|
||||||
|
|||||||
285
pnpm-lock.yaml
generated
285
pnpm-lock.yaml
generated
@@ -26,6 +26,9 @@ importers:
|
|||||||
nuxt:
|
nuxt:
|
||||||
specifier: ^4.2.1
|
specifier: ^4.2.1
|
||||||
version: 4.2.1(@parcel/watcher@2.5.1)(@vue/compiler-sfc@3.5.25)(db0@0.3.4)(ioredis@5.8.2)(lightningcss@1.30.2)(magicast@0.5.1)(rollup@4.53.3)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))(yaml@2.8.2)
|
version: 4.2.1(@parcel/watcher@2.5.1)(@vue/compiler-sfc@3.5.25)(db0@0.3.4)(ioredis@5.8.2)(lightningcss@1.30.2)(magicast@0.5.1)(rollup@4.53.3)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))(yaml@2.8.2)
|
||||||
|
nuxt-studio:
|
||||||
|
specifier: 1.1.0
|
||||||
|
version: 1.1.0(db0@0.3.4)(ioredis@5.8.2)(magicast@0.5.1)(vue@3.5.25(typescript@5.9.3))
|
||||||
vue:
|
vue:
|
||||||
specifier: ^3.5.25
|
specifier: ^3.5.25
|
||||||
version: 3.5.25(typescript@5.9.3)
|
version: 3.5.25(typescript@5.9.3)
|
||||||
@@ -335,6 +338,12 @@ packages:
|
|||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
|
|
||||||
|
'@iconify-json/lucide@1.2.86':
|
||||||
|
resolution: {integrity: sha512-W/Jz7/gGOkI9u43r+UHmQtZtcyw2YLvMwiHa01WV6V4DYltrPNXiD+bCa+djV8LZB1uwF8CiympOMIbgiQ74nA==}
|
||||||
|
|
||||||
|
'@iconify/types@2.0.0':
|
||||||
|
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
|
||||||
|
|
||||||
'@ioredis/commands@1.4.0':
|
'@ioredis/commands@1.4.0':
|
||||||
resolution: {integrity: sha512-aFT2yemJJo+TZCmieA7qnYGQooOS7QfNmYrzGtsYd3g9j5iDP8AimYYAesf79ohjbLG12XxC4nG5DyEnC88AsQ==}
|
resolution: {integrity: sha512-aFT2yemJJo+TZCmieA7qnYGQooOS7QfNmYrzGtsYd3g9j5iDP8AimYYAesf79ohjbLG12XxC4nG5DyEnC88AsQ==}
|
||||||
|
|
||||||
@@ -463,6 +472,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-lLt8KLHyl7IClc3RqRpRikz15eCfTRlAWL9leVzPyg5N87FfKE/7EWgWvpiL/z4Tf3dQCIqQb88TmHE0JTIDvA==}
|
resolution: {integrity: sha512-lLt8KLHyl7IClc3RqRpRikz15eCfTRlAWL9leVzPyg5N87FfKE/7EWgWvpiL/z4Tf3dQCIqQb88TmHE0JTIDvA==}
|
||||||
engines: {node: '>=18.12.0'}
|
engines: {node: '>=18.12.0'}
|
||||||
|
|
||||||
|
'@nuxt/kit@4.2.2':
|
||||||
|
resolution: {integrity: sha512-ZAgYBrPz/yhVgDznBNdQj2vhmOp31haJbO0I0iah/P9atw+OHH7NJLUZ3PK+LOz/0fblKTN1XJVSi8YQ1TQ0KA==}
|
||||||
|
engines: {node: '>=18.12.0'}
|
||||||
|
|
||||||
'@nuxt/nitro-server@4.2.1':
|
'@nuxt/nitro-server@4.2.1':
|
||||||
resolution: {integrity: sha512-P6zGvKgbjwDO28A4QnRuhL0riNSxcw317nGSYfP9Z+V+GyCNVc9yCcAEuzRIvm+dv4PB6VC708my8Jq30VM9Ow==}
|
resolution: {integrity: sha512-P6zGvKgbjwDO28A4QnRuhL0riNSxcw317nGSYfP9Z+V+GyCNVc9yCcAEuzRIvm+dv4PB6VC708my8Jq30VM9Ow==}
|
||||||
engines: {node: ^20.19.0 || >=22.12.0}
|
engines: {node: ^20.19.0 || >=22.12.0}
|
||||||
@@ -492,6 +505,9 @@ packages:
|
|||||||
'@nuxtjs/mdc@0.18.4':
|
'@nuxtjs/mdc@0.18.4':
|
||||||
resolution: {integrity: sha512-lM4R0Mbbhw5h5Fwj7LqGiw6eanqjjPkzi+9FaXfn1BdmfbW8GlR2quLIiBXTbw0wUrWYyOWoc5FGIE/gpZUTjQ==}
|
resolution: {integrity: sha512-lM4R0Mbbhw5h5Fwj7LqGiw6eanqjjPkzi+9FaXfn1BdmfbW8GlR2quLIiBXTbw0wUrWYyOWoc5FGIE/gpZUTjQ==}
|
||||||
|
|
||||||
|
'@nuxtjs/mdc@0.19.2':
|
||||||
|
resolution: {integrity: sha512-mtwBb9D5U7H1R3kpqEmqwML1RudN6qOJqJwebrqLxk+EWhtGUXAdUBXC2L/kPWiCNA4Yz/EO+tSfSQV8Idh5nw==}
|
||||||
|
|
||||||
'@oxc-minify/binding-android-arm64@0.96.0':
|
'@oxc-minify/binding-android-arm64@0.96.0':
|
||||||
resolution: {integrity: sha512-lzeIEMu/v6Y+La5JSesq4hvyKtKBq84cgQpKYTYM/yGuNk2tfd5Ha31hnC+mTh48lp/5vZH+WBfjVUjjINCfug==}
|
resolution: {integrity: sha512-lzeIEMu/v6Y+La5JSesq4hvyKtKBq84cgQpKYTYM/yGuNk2tfd5Ha31hnC+mTh48lp/5vZH+WBfjVUjjINCfug==}
|
||||||
engines: {node: ^20.19.0 || >=22.12.0}
|
engines: {node: ^20.19.0 || >=22.12.0}
|
||||||
@@ -1057,24 +1073,45 @@ packages:
|
|||||||
'@shikijs/core@3.17.1':
|
'@shikijs/core@3.17.1':
|
||||||
resolution: {integrity: sha512-VWsduykcibGU0WMi66PflThDWyqEeTOiWdCRa3wmsZuishh+1PDSOh5gGxHdSrOtS+v1pmYaxodk/JNzwusElA==}
|
resolution: {integrity: sha512-VWsduykcibGU0WMi66PflThDWyqEeTOiWdCRa3wmsZuishh+1PDSOh5gGxHdSrOtS+v1pmYaxodk/JNzwusElA==}
|
||||||
|
|
||||||
|
'@shikijs/core@3.21.0':
|
||||||
|
resolution: {integrity: sha512-AXSQu/2n1UIQekY8euBJlvFYZIw0PHY63jUzGbrOma4wPxzznJXTXkri+QcHeBNaFxiiOljKxxJkVSoB3PjbyA==}
|
||||||
|
|
||||||
'@shikijs/engine-javascript@3.17.1':
|
'@shikijs/engine-javascript@3.17.1':
|
||||||
resolution: {integrity: sha512-Ars0DVJITQrkOl5Swwy+94NL/BlOi/w1NSFbPGkcsln7Dv+M2qHaVpNHwdtWCC4/arzvjuHbyWBUsWExDHPDLw==}
|
resolution: {integrity: sha512-Ars0DVJITQrkOl5Swwy+94NL/BlOi/w1NSFbPGkcsln7Dv+M2qHaVpNHwdtWCC4/arzvjuHbyWBUsWExDHPDLw==}
|
||||||
|
|
||||||
|
'@shikijs/engine-javascript@3.21.0':
|
||||||
|
resolution: {integrity: sha512-ATwv86xlbmfD9n9gKRiwuPpWgPENAWCLwYCGz9ugTJlsO2kOzhOkvoyV/UD+tJ0uT7YRyD530x6ugNSffmvIiQ==}
|
||||||
|
|
||||||
'@shikijs/engine-oniguruma@3.17.1':
|
'@shikijs/engine-oniguruma@3.17.1':
|
||||||
resolution: {integrity: sha512-fsXPy4va/4iblEGS+22nP5V08IwwBcM+8xHUzSON0QmHm29/AJRghA95w9VDnxuwp9wOdJxEhfPkKp6vqcsN+w==}
|
resolution: {integrity: sha512-fsXPy4va/4iblEGS+22nP5V08IwwBcM+8xHUzSON0QmHm29/AJRghA95w9VDnxuwp9wOdJxEhfPkKp6vqcsN+w==}
|
||||||
|
|
||||||
|
'@shikijs/engine-oniguruma@3.21.0':
|
||||||
|
resolution: {integrity: sha512-OYknTCct6qiwpQDqDdf3iedRdzj6hFlOPv5hMvI+hkWfCKs5mlJ4TXziBG9nyabLwGulrUjHiCq3xCspSzErYQ==}
|
||||||
|
|
||||||
'@shikijs/langs@3.17.1':
|
'@shikijs/langs@3.17.1':
|
||||||
resolution: {integrity: sha512-YTBVN+L2j7zBuOVjNZ2XiSNQEkm/7wZ1TSc5UO77GJPcg7Rk25WSscWA7y8pW7Bo25JIU0EWchUkq/UQjOJlJA==}
|
resolution: {integrity: sha512-YTBVN+L2j7zBuOVjNZ2XiSNQEkm/7wZ1TSc5UO77GJPcg7Rk25WSscWA7y8pW7Bo25JIU0EWchUkq/UQjOJlJA==}
|
||||||
|
|
||||||
|
'@shikijs/langs@3.21.0':
|
||||||
|
resolution: {integrity: sha512-g6mn5m+Y6GBJ4wxmBYqalK9Sp0CFkUqfNzUy2pJglUginz6ZpWbaWjDB4fbQ/8SHzFjYbtU6Ddlp1pc+PPNDVA==}
|
||||||
|
|
||||||
'@shikijs/themes@3.17.1':
|
'@shikijs/themes@3.17.1':
|
||||||
resolution: {integrity: sha512-aohwwqNUB5h2ATfgrqYRPl8vyazqCiQ2wIV4xq+UzaBRHpqLMGSemkasK+vIEpl0YaendoaKUsDfpwhCqyHIaQ==}
|
resolution: {integrity: sha512-aohwwqNUB5h2ATfgrqYRPl8vyazqCiQ2wIV4xq+UzaBRHpqLMGSemkasK+vIEpl0YaendoaKUsDfpwhCqyHIaQ==}
|
||||||
|
|
||||||
|
'@shikijs/themes@3.21.0':
|
||||||
|
resolution: {integrity: sha512-BAE4cr9EDiZyYzwIHEk7JTBJ9CzlPuM4PchfcA5ao1dWXb25nv6hYsoDiBq2aZK9E3dlt3WB78uI96UESD+8Mw==}
|
||||||
|
|
||||||
'@shikijs/transformers@3.17.1':
|
'@shikijs/transformers@3.17.1':
|
||||||
resolution: {integrity: sha512-vFKeOSDAK2Ju631LS2wez0aGadtiZmRd+wiTsgb8xkBMAN3s2K++HPFAzoT6JJ5HcSyqUvASuUykEHEphdt9Cg==}
|
resolution: {integrity: sha512-vFKeOSDAK2Ju631LS2wez0aGadtiZmRd+wiTsgb8xkBMAN3s2K++HPFAzoT6JJ5HcSyqUvASuUykEHEphdt9Cg==}
|
||||||
|
|
||||||
|
'@shikijs/transformers@3.21.0':
|
||||||
|
resolution: {integrity: sha512-CZwvCWWIiRRiFk9/JKzdEooakAP8mQDtBOQ1TKiCaS2E1bYtyBCOkUzS8akO34/7ufICQ29oeSfkb3tT5KtrhA==}
|
||||||
|
|
||||||
'@shikijs/types@3.17.1':
|
'@shikijs/types@3.17.1':
|
||||||
resolution: {integrity: sha512-yUFLiCnZHHJ16KbVbt3B1EzBUadU3OVpq0PEyb301m5BbuFKApQYBzJGhrK48hH/tYWSjzwcj7BSmYbBc0zntQ==}
|
resolution: {integrity: sha512-yUFLiCnZHHJ16KbVbt3B1EzBUadU3OVpq0PEyb301m5BbuFKApQYBzJGhrK48hH/tYWSjzwcj7BSmYbBc0zntQ==}
|
||||||
|
|
||||||
|
'@shikijs/types@3.21.0':
|
||||||
|
resolution: {integrity: sha512-zGrWOxZ0/+0ovPY7PvBU2gIS9tmhSUUt30jAcNV0Bq0gb2S98gwfjIs1vxlmH5zM7/4YxLamT6ChlqqAJmPPjA==}
|
||||||
|
|
||||||
'@shikijs/vscode-textmate@10.0.2':
|
'@shikijs/vscode-textmate@10.0.2':
|
||||||
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
|
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
|
||||||
|
|
||||||
@@ -1213,6 +1250,9 @@ packages:
|
|||||||
'@vue/compiler-core@3.5.25':
|
'@vue/compiler-core@3.5.25':
|
||||||
resolution: {integrity: sha512-vay5/oQJdsNHmliWoZfHPoVZZRmnSWhug0BYT34njkYTPqClh3DNWLkZNJBVSjsNMrg0CCrBfoKkjZQPM/QVUw==}
|
resolution: {integrity: sha512-vay5/oQJdsNHmliWoZfHPoVZZRmnSWhug0BYT34njkYTPqClh3DNWLkZNJBVSjsNMrg0CCrBfoKkjZQPM/QVUw==}
|
||||||
|
|
||||||
|
'@vue/compiler-core@3.5.26':
|
||||||
|
resolution: {integrity: sha512-vXyI5GMfuoBCnv5ucIT7jhHKl55Y477yxP6fc4eUswjP8FG3FFVFd41eNDArR+Uk3QKn2Z85NavjaxLxOC19/w==}
|
||||||
|
|
||||||
'@vue/compiler-dom@3.5.25':
|
'@vue/compiler-dom@3.5.25':
|
||||||
resolution: {integrity: sha512-4We0OAcMZsKgYoGlMjzYvaoErltdFI2/25wqanuTu+S4gismOTRTBPi4IASOjxWdzIwrYSjnqONfKvuqkXzE2Q==}
|
resolution: {integrity: sha512-4We0OAcMZsKgYoGlMjzYvaoErltdFI2/25wqanuTu+S4gismOTRTBPi4IASOjxWdzIwrYSjnqONfKvuqkXzE2Q==}
|
||||||
|
|
||||||
@@ -1261,6 +1301,9 @@ packages:
|
|||||||
'@vue/shared@3.5.25':
|
'@vue/shared@3.5.25':
|
||||||
resolution: {integrity: sha512-AbOPdQQnAnzs58H2FrrDxYj/TJfmeS2jdfEEhgiKINy+bnOANmVizIEgq1r+C5zsbs6l1CCQxtcj71rwNQ4jWg==}
|
resolution: {integrity: sha512-AbOPdQQnAnzs58H2FrrDxYj/TJfmeS2jdfEEhgiKINy+bnOANmVizIEgq1r+C5zsbs6l1CCQxtcj71rwNQ4jWg==}
|
||||||
|
|
||||||
|
'@vue/shared@3.5.26':
|
||||||
|
resolution: {integrity: sha512-7Z6/y3uFI5PRoKeorTOSXKcDj0MSasfNNltcslbFrPpcw6aXRUALq4IfJlaTRspiWIUOEZbrpM+iQGmCOiWe4A==}
|
||||||
|
|
||||||
'@vueuse/core@14.1.0':
|
'@vueuse/core@14.1.0':
|
||||||
resolution: {integrity: sha512-rgBinKs07hAYyPF834mDTigH7BtPqvZ3Pryuzt1SD/lg5wEcWqvwzXXYGEDb2/cP0Sj5zSvHl3WkmMELr5kfWw==}
|
resolution: {integrity: sha512-rgBinKs07hAYyPF834mDTigH7BtPqvZ3Pryuzt1SD/lg5wEcWqvwzXXYGEDb2/cP0Sj5zSvHl3WkmMELr5kfWw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -1800,6 +1843,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
|
resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
|
||||||
engines: {node: '>=0.12'}
|
engines: {node: '>=0.12'}
|
||||||
|
|
||||||
|
entities@7.0.0:
|
||||||
|
resolution: {integrity: sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==}
|
||||||
|
engines: {node: '>=0.12'}
|
||||||
|
|
||||||
error-stack-parser-es@1.0.5:
|
error-stack-parser-es@1.0.5:
|
||||||
resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==}
|
resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==}
|
||||||
|
|
||||||
@@ -2681,6 +2728,13 @@ packages:
|
|||||||
resolution: {integrity: sha512-pxEnARUzRmq3zbOm8fJkWLPR8mL82NeP5Pu/iYff4otl6jPJwgC1Cbpz3Z77HlVeYVtzhSpQRsCSo/+296CwYw==}
|
resolution: {integrity: sha512-pxEnARUzRmq3zbOm8fJkWLPR8mL82NeP5Pu/iYff4otl6jPJwgC1Cbpz3Z77HlVeYVtzhSpQRsCSo/+296CwYw==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
|
nuxt-component-meta@0.16.0:
|
||||||
|
resolution: {integrity: sha512-mxsLl+gcF930dM4ozdxskGKEpldJn/fACR18uXrMDvvwxM+rMZW4tzuRMEuxhoyEXtxPLdOLP52wrS6UzBSx6Q==}
|
||||||
|
hasBin: true
|
||||||
|
|
||||||
|
nuxt-studio@1.1.0:
|
||||||
|
resolution: {integrity: sha512-oy0P1GJZRDQLlOu8o/UJUE4yxGW+COwTs1ND7Q27DUobpUYm3M7RkSS0AZpsTePj8fY1m5wCKs4S5oBqc8z6tA==}
|
||||||
|
|
||||||
nuxt@4.2.1:
|
nuxt@4.2.1:
|
||||||
resolution: {integrity: sha512-OE5ONizgwkKhjTGlUYB3ksE+2q2/I30QIYFl3N1yYz1r2rwhunGA3puUvqkzXwgLQ3AdsNcigPDmyQsqjbSdoQ==}
|
resolution: {integrity: sha512-OE5ONizgwkKhjTGlUYB3ksE+2q2/I30QIYFl3N1yYz1r2rwhunGA3puUvqkzXwgLQ3AdsNcigPDmyQsqjbSdoQ==}
|
||||||
engines: {node: ^20.19.0 || >=22.12.0}
|
engines: {node: ^20.19.0 || >=22.12.0}
|
||||||
@@ -3112,6 +3166,9 @@ packages:
|
|||||||
remark-gfm@4.0.1:
|
remark-gfm@4.0.1:
|
||||||
resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==}
|
resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==}
|
||||||
|
|
||||||
|
remark-mdc@3.10.0:
|
||||||
|
resolution: {integrity: sha512-gJhrSs4bGyqr7eSuLoaLlpmiDZrJ9fP/8gTA/w1CnKnW/mfxc9VKM+ndzpOxHQnpAU4tjD8QqF6SMLiOvIVTYA==}
|
||||||
|
|
||||||
remark-mdc@3.9.0:
|
remark-mdc@3.9.0:
|
||||||
resolution: {integrity: sha512-hRbVWknG8V6HCfWz+YHUQaNey6AchYIi0jheYTUk9Y2XcMrc7ON5uVQOIhnBVQg2zKFm6bIlx4JoETUMM0Pq3g==}
|
resolution: {integrity: sha512-hRbVWknG8V6HCfWz+YHUQaNey6AchYIi0jheYTUk9Y2XcMrc7ON5uVQOIhnBVQg2zKFm6bIlx4JoETUMM0Pq3g==}
|
||||||
|
|
||||||
@@ -3232,6 +3289,9 @@ packages:
|
|||||||
shiki@3.17.1:
|
shiki@3.17.1:
|
||||||
resolution: {integrity: sha512-KbAPJo6pQpfjupOg5HW0fk/OSmeBfzza2IjZ5XbNKbqhZaCoxro/EyOgesaLvTdyDfrsAUDA6L4q14sc+k9i7g==}
|
resolution: {integrity: sha512-KbAPJo6pQpfjupOg5HW0fk/OSmeBfzza2IjZ5XbNKbqhZaCoxro/EyOgesaLvTdyDfrsAUDA6L4q14sc+k9i7g==}
|
||||||
|
|
||||||
|
shiki@3.21.0:
|
||||||
|
resolution: {integrity: sha512-N65B/3bqL/TI2crrXr+4UivctrAGEjmsib5rPMMPpFp1xAx/w03v8WZ9RDDFYteXoEgY7qZ4HGgl5KBIu1153w==}
|
||||||
|
|
||||||
signal-exit@4.1.0:
|
signal-exit@4.1.0:
|
||||||
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
@@ -3603,6 +3663,9 @@ packages:
|
|||||||
unwasm@0.5.0:
|
unwasm@0.5.0:
|
||||||
resolution: {integrity: sha512-6pGyUVJuqGRyyWc0JHbbjXwalBlc/9lEqfuE5j56L4V/MXhdBLRtbX7ciazT+EnzOVV+j++qnxJRTkjna+LgcQ==}
|
resolution: {integrity: sha512-6pGyUVJuqGRyyWc0JHbbjXwalBlc/9lEqfuE5j56L4V/MXhdBLRtbX7ciazT+EnzOVV+j++qnxJRTkjna+LgcQ==}
|
||||||
|
|
||||||
|
unwasm@0.5.3:
|
||||||
|
resolution: {integrity: sha512-keBgTSfp3r6+s9ZcSma+0chwxQdmLbB5+dAD9vjtB21UTMYuKAxHXCU1K2CbCtnP09EaWeRvACnXk0EJtUx+hw==}
|
||||||
|
|
||||||
update-browserslist-db@1.1.4:
|
update-browserslist-db@1.1.4:
|
||||||
resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
|
resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@@ -4158,6 +4221,12 @@ snapshots:
|
|||||||
'@esbuild/win32-x64@0.25.12':
|
'@esbuild/win32-x64@0.25.12':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
|
'@iconify-json/lucide@1.2.86':
|
||||||
|
dependencies:
|
||||||
|
'@iconify/types': 2.0.0
|
||||||
|
|
||||||
|
'@iconify/types@2.0.0': {}
|
||||||
|
|
||||||
'@ioredis/commands@1.4.0': {}
|
'@ioredis/commands@1.4.0': {}
|
||||||
|
|
||||||
'@isaacs/balanced-match@4.0.1': {}
|
'@isaacs/balanced-match@4.0.1': {}
|
||||||
@@ -4491,6 +4560,31 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- magicast
|
- magicast
|
||||||
|
|
||||||
|
'@nuxt/kit@4.2.2(magicast@0.5.1)':
|
||||||
|
dependencies:
|
||||||
|
c12: 3.3.2(magicast@0.5.1)
|
||||||
|
consola: 3.4.2
|
||||||
|
defu: 6.1.4
|
||||||
|
destr: 2.0.5
|
||||||
|
errx: 0.1.0
|
||||||
|
exsolve: 1.0.8
|
||||||
|
ignore: 7.0.5
|
||||||
|
jiti: 2.6.1
|
||||||
|
klona: 2.0.6
|
||||||
|
mlly: 1.8.0
|
||||||
|
ohash: 2.0.11
|
||||||
|
pathe: 2.0.3
|
||||||
|
pkg-types: 2.3.0
|
||||||
|
rc9: 2.1.2
|
||||||
|
scule: 1.3.0
|
||||||
|
semver: 7.7.3
|
||||||
|
tinyglobby: 0.2.15
|
||||||
|
ufo: 1.6.1
|
||||||
|
unctx: 2.4.1
|
||||||
|
untyped: 2.0.0
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- magicast
|
||||||
|
|
||||||
'@nuxt/nitro-server@4.2.1(db0@0.3.4)(ioredis@5.8.2)(magicast@0.5.1)(nuxt@4.2.1(@parcel/watcher@2.5.1)(@vue/compiler-sfc@3.5.25)(db0@0.3.4)(ioredis@5.8.2)(lightningcss@1.30.2)(magicast@0.5.1)(rollup@4.53.3)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)':
|
'@nuxt/nitro-server@4.2.1(db0@0.3.4)(ioredis@5.8.2)(magicast@0.5.1)(nuxt@4.2.1(@parcel/watcher@2.5.1)(@vue/compiler-sfc@3.5.25)(db0@0.3.4)(ioredis@5.8.2)(lightningcss@1.30.2)(magicast@0.5.1)(rollup@4.53.3)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@nuxt/devalue': 2.0.2
|
'@nuxt/devalue': 2.0.2
|
||||||
@@ -4688,6 +4782,55 @@ snapshots:
|
|||||||
- magicast
|
- magicast
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
|
'@nuxtjs/mdc@0.19.2(magicast@0.5.1)':
|
||||||
|
dependencies:
|
||||||
|
'@nuxt/kit': 4.2.2(magicast@0.5.1)
|
||||||
|
'@shikijs/core': 3.21.0
|
||||||
|
'@shikijs/langs': 3.21.0
|
||||||
|
'@shikijs/themes': 3.21.0
|
||||||
|
'@shikijs/transformers': 3.21.0
|
||||||
|
'@types/hast': 3.0.4
|
||||||
|
'@types/mdast': 4.0.4
|
||||||
|
'@vue/compiler-core': 3.5.26
|
||||||
|
consola: 3.4.2
|
||||||
|
debug: 4.4.3
|
||||||
|
defu: 6.1.4
|
||||||
|
destr: 2.0.5
|
||||||
|
detab: 3.0.2
|
||||||
|
github-slugger: 2.0.0
|
||||||
|
hast-util-format: 1.1.0
|
||||||
|
hast-util-to-mdast: 10.1.2
|
||||||
|
hast-util-to-string: 3.0.1
|
||||||
|
mdast-util-to-hast: 13.2.1
|
||||||
|
micromark-util-sanitize-uri: 2.0.1
|
||||||
|
parse5: 8.0.0
|
||||||
|
pathe: 2.0.3
|
||||||
|
property-information: 7.1.0
|
||||||
|
rehype-external-links: 3.0.0
|
||||||
|
rehype-minify-whitespace: 6.0.2
|
||||||
|
rehype-raw: 7.0.0
|
||||||
|
rehype-remark: 10.0.1
|
||||||
|
rehype-slug: 6.0.0
|
||||||
|
rehype-sort-attribute-values: 5.0.1
|
||||||
|
rehype-sort-attributes: 5.0.1
|
||||||
|
remark-emoji: 5.0.2
|
||||||
|
remark-gfm: 4.0.1
|
||||||
|
remark-mdc: 3.10.0
|
||||||
|
remark-parse: 11.0.0
|
||||||
|
remark-rehype: 11.1.2
|
||||||
|
remark-stringify: 11.0.0
|
||||||
|
scule: 1.3.0
|
||||||
|
shiki: 3.21.0
|
||||||
|
ufo: 1.6.1
|
||||||
|
unified: 11.0.5
|
||||||
|
unist-builder: 4.0.0
|
||||||
|
unist-util-visit: 5.0.0
|
||||||
|
unwasm: 0.5.3
|
||||||
|
vfile: 6.0.3
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- magicast
|
||||||
|
- supports-color
|
||||||
|
|
||||||
'@oxc-minify/binding-android-arm64@0.96.0':
|
'@oxc-minify/binding-android-arm64@0.96.0':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
@@ -5053,35 +5196,71 @@ snapshots:
|
|||||||
'@types/hast': 3.0.4
|
'@types/hast': 3.0.4
|
||||||
hast-util-to-html: 9.0.5
|
hast-util-to-html: 9.0.5
|
||||||
|
|
||||||
|
'@shikijs/core@3.21.0':
|
||||||
|
dependencies:
|
||||||
|
'@shikijs/types': 3.21.0
|
||||||
|
'@shikijs/vscode-textmate': 10.0.2
|
||||||
|
'@types/hast': 3.0.4
|
||||||
|
hast-util-to-html: 9.0.5
|
||||||
|
|
||||||
'@shikijs/engine-javascript@3.17.1':
|
'@shikijs/engine-javascript@3.17.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@shikijs/types': 3.17.1
|
'@shikijs/types': 3.17.1
|
||||||
'@shikijs/vscode-textmate': 10.0.2
|
'@shikijs/vscode-textmate': 10.0.2
|
||||||
oniguruma-to-es: 4.3.4
|
oniguruma-to-es: 4.3.4
|
||||||
|
|
||||||
|
'@shikijs/engine-javascript@3.21.0':
|
||||||
|
dependencies:
|
||||||
|
'@shikijs/types': 3.21.0
|
||||||
|
'@shikijs/vscode-textmate': 10.0.2
|
||||||
|
oniguruma-to-es: 4.3.4
|
||||||
|
|
||||||
'@shikijs/engine-oniguruma@3.17.1':
|
'@shikijs/engine-oniguruma@3.17.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@shikijs/types': 3.17.1
|
'@shikijs/types': 3.17.1
|
||||||
'@shikijs/vscode-textmate': 10.0.2
|
'@shikijs/vscode-textmate': 10.0.2
|
||||||
|
|
||||||
|
'@shikijs/engine-oniguruma@3.21.0':
|
||||||
|
dependencies:
|
||||||
|
'@shikijs/types': 3.21.0
|
||||||
|
'@shikijs/vscode-textmate': 10.0.2
|
||||||
|
|
||||||
'@shikijs/langs@3.17.1':
|
'@shikijs/langs@3.17.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@shikijs/types': 3.17.1
|
'@shikijs/types': 3.17.1
|
||||||
|
|
||||||
|
'@shikijs/langs@3.21.0':
|
||||||
|
dependencies:
|
||||||
|
'@shikijs/types': 3.21.0
|
||||||
|
|
||||||
'@shikijs/themes@3.17.1':
|
'@shikijs/themes@3.17.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@shikijs/types': 3.17.1
|
'@shikijs/types': 3.17.1
|
||||||
|
|
||||||
|
'@shikijs/themes@3.21.0':
|
||||||
|
dependencies:
|
||||||
|
'@shikijs/types': 3.21.0
|
||||||
|
|
||||||
'@shikijs/transformers@3.17.1':
|
'@shikijs/transformers@3.17.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@shikijs/core': 3.17.1
|
'@shikijs/core': 3.17.1
|
||||||
'@shikijs/types': 3.17.1
|
'@shikijs/types': 3.17.1
|
||||||
|
|
||||||
|
'@shikijs/transformers@3.21.0':
|
||||||
|
dependencies:
|
||||||
|
'@shikijs/core': 3.21.0
|
||||||
|
'@shikijs/types': 3.21.0
|
||||||
|
|
||||||
'@shikijs/types@3.17.1':
|
'@shikijs/types@3.17.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@shikijs/vscode-textmate': 10.0.2
|
'@shikijs/vscode-textmate': 10.0.2
|
||||||
'@types/hast': 3.0.4
|
'@types/hast': 3.0.4
|
||||||
|
|
||||||
|
'@shikijs/types@3.21.0':
|
||||||
|
dependencies:
|
||||||
|
'@shikijs/vscode-textmate': 10.0.2
|
||||||
|
'@types/hast': 3.0.4
|
||||||
|
|
||||||
'@shikijs/vscode-textmate@10.0.2': {}
|
'@shikijs/vscode-textmate@10.0.2': {}
|
||||||
|
|
||||||
'@sindresorhus/is@4.6.0': {}
|
'@sindresorhus/is@4.6.0': {}
|
||||||
@@ -5245,6 +5424,14 @@ snapshots:
|
|||||||
estree-walker: 2.0.2
|
estree-walker: 2.0.2
|
||||||
source-map-js: 1.2.1
|
source-map-js: 1.2.1
|
||||||
|
|
||||||
|
'@vue/compiler-core@3.5.26':
|
||||||
|
dependencies:
|
||||||
|
'@babel/parser': 7.28.5
|
||||||
|
'@vue/shared': 3.5.26
|
||||||
|
entities: 7.0.0
|
||||||
|
estree-walker: 2.0.2
|
||||||
|
source-map-js: 1.2.1
|
||||||
|
|
||||||
'@vue/compiler-dom@3.5.25':
|
'@vue/compiler-dom@3.5.25':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vue/compiler-core': 3.5.25
|
'@vue/compiler-core': 3.5.25
|
||||||
@@ -5331,6 +5518,8 @@ snapshots:
|
|||||||
|
|
||||||
'@vue/shared@3.5.25': {}
|
'@vue/shared@3.5.25': {}
|
||||||
|
|
||||||
|
'@vue/shared@3.5.26': {}
|
||||||
|
|
||||||
'@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3))':
|
'@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/web-bluetooth': 0.0.21
|
'@types/web-bluetooth': 0.0.21
|
||||||
@@ -5816,6 +6005,8 @@ snapshots:
|
|||||||
|
|
||||||
entities@6.0.1: {}
|
entities@6.0.1: {}
|
||||||
|
|
||||||
|
entities@7.0.0: {}
|
||||||
|
|
||||||
error-stack-parser-es@1.0.5: {}
|
error-stack-parser-es@1.0.5: {}
|
||||||
|
|
||||||
errx@0.1.0: {}
|
errx@0.1.0: {}
|
||||||
@@ -7068,6 +7259,57 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- magicast
|
- magicast
|
||||||
|
|
||||||
|
nuxt-component-meta@0.16.0(magicast@0.5.1):
|
||||||
|
dependencies:
|
||||||
|
'@nuxt/kit': 4.2.1(magicast@0.5.1)
|
||||||
|
citty: 0.1.6
|
||||||
|
json-schema-to-zod: 2.7.0
|
||||||
|
mlly: 1.8.0
|
||||||
|
ohash: 2.0.11
|
||||||
|
scule: 1.3.0
|
||||||
|
typescript: 5.9.3
|
||||||
|
ufo: 1.6.1
|
||||||
|
vue-component-meta: 3.1.5(typescript@5.9.3)
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- magicast
|
||||||
|
|
||||||
|
nuxt-studio@1.1.0(db0@0.3.4)(ioredis@5.8.2)(magicast@0.5.1)(vue@3.5.25(typescript@5.9.3)):
|
||||||
|
dependencies:
|
||||||
|
'@iconify-json/lucide': 1.2.86
|
||||||
|
'@nuxtjs/mdc': 0.19.2(magicast@0.5.1)
|
||||||
|
'@vueuse/core': 14.1.0(vue@3.5.25(typescript@5.9.3))
|
||||||
|
defu: 6.1.4
|
||||||
|
destr: 2.0.5
|
||||||
|
js-yaml: 4.1.1
|
||||||
|
minimatch: 10.1.1
|
||||||
|
nuxt-component-meta: 0.16.0(magicast@0.5.1)
|
||||||
|
remark-mdc: 3.10.0
|
||||||
|
shiki: 3.21.0
|
||||||
|
unstorage: 1.17.3(db0@0.3.4)(ioredis@5.8.2)
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- '@azure/app-configuration'
|
||||||
|
- '@azure/cosmos'
|
||||||
|
- '@azure/data-tables'
|
||||||
|
- '@azure/identity'
|
||||||
|
- '@azure/keyvault-secrets'
|
||||||
|
- '@azure/storage-blob'
|
||||||
|
- '@capacitor/preferences'
|
||||||
|
- '@deno/kv'
|
||||||
|
- '@netlify/blobs'
|
||||||
|
- '@planetscale/database'
|
||||||
|
- '@upstash/redis'
|
||||||
|
- '@vercel/blob'
|
||||||
|
- '@vercel/functions'
|
||||||
|
- '@vercel/kv'
|
||||||
|
- aws4fetch
|
||||||
|
- db0
|
||||||
|
- idb-keyval
|
||||||
|
- ioredis
|
||||||
|
- magicast
|
||||||
|
- supports-color
|
||||||
|
- uploadthing
|
||||||
|
- vue
|
||||||
|
|
||||||
nuxt@4.2.1(@parcel/watcher@2.5.1)(@vue/compiler-sfc@3.5.25)(db0@0.3.4)(ioredis@5.8.2)(lightningcss@1.30.2)(magicast@0.5.1)(rollup@4.53.3)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))(yaml@2.8.2):
|
nuxt@4.2.1(@parcel/watcher@2.5.1)(@vue/compiler-sfc@3.5.25)(db0@0.3.4)(ioredis@5.8.2)(lightningcss@1.30.2)(magicast@0.5.1)(rollup@4.53.3)(terser@5.44.1)(typescript@5.9.3)(vite@7.2.6(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))(yaml@2.8.2):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@dxup/nuxt': 0.2.2(magicast@0.5.1)
|
'@dxup/nuxt': 0.2.2(magicast@0.5.1)
|
||||||
@@ -7678,6 +7920,29 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
|
remark-mdc@3.10.0:
|
||||||
|
dependencies:
|
||||||
|
'@types/mdast': 4.0.4
|
||||||
|
'@types/unist': 3.0.3
|
||||||
|
flat: 6.0.1
|
||||||
|
mdast-util-from-markdown: 2.0.2
|
||||||
|
mdast-util-to-markdown: 2.1.2
|
||||||
|
micromark: 4.0.2
|
||||||
|
micromark-core-commonmark: 2.0.3
|
||||||
|
micromark-factory-space: 2.0.1
|
||||||
|
micromark-factory-whitespace: 2.0.1
|
||||||
|
micromark-util-character: 2.1.1
|
||||||
|
micromark-util-types: 2.0.2
|
||||||
|
parse-entities: 4.0.2
|
||||||
|
scule: 1.3.0
|
||||||
|
stringify-entities: 4.0.4
|
||||||
|
unified: 11.0.5
|
||||||
|
unist-util-visit: 5.0.0
|
||||||
|
unist-util-visit-parents: 6.0.2
|
||||||
|
yaml: 2.8.2
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
|
||||||
remark-mdc@3.9.0:
|
remark-mdc@3.9.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/mdast': 4.0.4
|
'@types/mdast': 4.0.4
|
||||||
@@ -7853,6 +8118,17 @@ snapshots:
|
|||||||
'@shikijs/vscode-textmate': 10.0.2
|
'@shikijs/vscode-textmate': 10.0.2
|
||||||
'@types/hast': 3.0.4
|
'@types/hast': 3.0.4
|
||||||
|
|
||||||
|
shiki@3.21.0:
|
||||||
|
dependencies:
|
||||||
|
'@shikijs/core': 3.21.0
|
||||||
|
'@shikijs/engine-javascript': 3.21.0
|
||||||
|
'@shikijs/engine-oniguruma': 3.21.0
|
||||||
|
'@shikijs/langs': 3.21.0
|
||||||
|
'@shikijs/themes': 3.21.0
|
||||||
|
'@shikijs/types': 3.21.0
|
||||||
|
'@shikijs/vscode-textmate': 10.0.2
|
||||||
|
'@types/hast': 3.0.4
|
||||||
|
|
||||||
signal-exit@4.1.0: {}
|
signal-exit@4.1.0: {}
|
||||||
|
|
||||||
simple-git@3.30.0:
|
simple-git@3.30.0:
|
||||||
@@ -8256,6 +8532,15 @@ snapshots:
|
|||||||
pathe: 2.0.3
|
pathe: 2.0.3
|
||||||
pkg-types: 2.3.0
|
pkg-types: 2.3.0
|
||||||
|
|
||||||
|
unwasm@0.5.3:
|
||||||
|
dependencies:
|
||||||
|
exsolve: 1.0.8
|
||||||
|
knitwork: 1.3.0
|
||||||
|
magic-string: 0.30.21
|
||||||
|
mlly: 1.8.0
|
||||||
|
pathe: 2.0.3
|
||||||
|
pkg-types: 2.3.0
|
||||||
|
|
||||||
update-browserslist-db@1.1.4(browserslist@4.28.0):
|
update-browserslist-db@1.1.4(browserslist@4.28.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
browserslist: 4.28.0
|
browserslist: 4.28.0
|
||||||
|
|||||||
Reference in New Issue
Block a user