aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/storybook/package.json24
-rw-r--r--apps/website/astro.config.ts2
-rw-r--r--apps/website/package.json18
-rw-r--r--apps/website/src/env.d.ts2
-rw-r--r--apps/website/src/layouts/Layout.astro15
-rw-r--r--apps/website/src/pages/mods.astro2
-rw-r--r--package.json9
-rw-r--r--packages/config/package.json6
-rw-r--r--packages/ui/package.json20
-rw-r--r--pnpm-lock.yaml3184
10 files changed, 1777 insertions, 1505 deletions
diff --git a/apps/storybook/package.json b/apps/storybook/package.json
index 6729f27..40399d9 100644
--- a/apps/storybook/package.json
+++ b/apps/storybook/package.json
@@ -6,31 +6,31 @@
"build-storybook": "storybook build --no-open"
},
"dependencies": {
- "@storybook/addon-essentials": "^7.6.6",
- "@storybook/addon-interactions": "^7.6.6",
- "@storybook/addon-links": "^7.6.6",
+ "@storybook/addon-essentials": "^7.6.7",
+ "@storybook/addon-interactions": "^7.6.7",
+ "@storybook/addon-links": "^7.6.7",
"@storybook/addon-styling": "^1.3.7",
- "@storybook/blocks": "^7.6.6",
- "@storybook/react": "^7.6.6",
- "@storybook/react-vite": "^7.6.6",
+ "@storybook/blocks": "^7.6.7",
+ "@storybook/react": "^7.6.7",
+ "@storybook/react-vite": "^7.6.7",
"@storybook/testing-library": "^0.2.2",
"postcss-pseudo-companion-classes": "^0.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
- "sass": "^1.69.5"
+ "sass": "^1.69.7"
},
"devDependencies": {
"@polyfrost/config": "workspace:*",
"@polyfrost/ui": "workspace:*",
- "@types/react": "^18.2.45",
+ "@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
- "postcss": "^8.4.32",
+ "postcss": "^8.4.33",
"prop-types": "^15.8.1",
- "storybook": "^7.6.6",
- "tailwindcss": "^3.4.0",
+ "storybook": "^7.6.7",
+ "tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
- "vite": "^5.0.10"
+ "vite": "^5.0.11"
}
}
diff --git a/apps/website/astro.config.ts b/apps/website/astro.config.ts
index 4f394a1..60831d1 100644
--- a/apps/website/astro.config.ts
+++ b/apps/website/astro.config.ts
@@ -16,7 +16,7 @@ export default defineConfig({
vite: {
css: {
postcss: {
- plugins: [postcssNesting],
+ plugins: [postcssNesting()],
},
},
},
diff --git a/apps/website/package.json b/apps/website/package.json
index a6e73a0..730f5a5 100644
--- a/apps/website/package.json
+++ b/apps/website/package.json
@@ -11,20 +11,18 @@
"test": "vitest"
},
"dependencies": {
- "@astrojs/mdx": "^2.0.2",
+ "@astrojs/mdx": "^2.0.3",
"@astrojs/rss": "^4.0.1",
- "@astrojs/sitemap": "^3.0.3",
- "@astrojs/tailwind": "^5.0.4",
- "astro": "^4.0.7",
- "fullpage.js": "^4.0.20",
- "locomotive-scroll": "^4.1.4",
- "sass": "^1.69.5",
- "tailwindcss": "^3.4.0",
- "vitest": "^1.1.0"
+ "@astrojs/sitemap": "^3.0.4",
+ "@astrojs/tailwind": "^5.1.0",
+ "astro": "^4.1.1",
+ "sass": "^1.69.7",
+ "tailwindcss": "^3.4.1",
+ "vitest": "^1.1.3"
},
"devDependencies": {
"@polyfrost/config": "workspace:*",
- "@types/node": "~20.10.5",
+ "@types/node": "~20.10.7",
"node-html-parser": "^6.1.12",
"typescript": "^5.3.3"
}
diff --git a/apps/website/src/env.d.ts b/apps/website/src/env.d.ts
index 01db714..acef35f 100644
--- a/apps/website/src/env.d.ts
+++ b/apps/website/src/env.d.ts
@@ -1,4 +1,2 @@
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
-
-declare module 'locomotive-scroll';
diff --git a/apps/website/src/layouts/Layout.astro b/apps/website/src/layouts/Layout.astro
index a14bc65..f157e73 100644
--- a/apps/website/src/layouts/Layout.astro
+++ b/apps/website/src/layouts/Layout.astro
@@ -4,8 +4,6 @@ import Favicon from '/media/polyfrost/minimal_bg.svg?url';
import Navbar from '../components/base/navbar/Navbar.astro';
import '../styles/global.css';
-// import 'locomotive-scroll/dist/locomotive-scroll.min.css';
-
interface Props {
title?: string
description?: string
@@ -47,16 +45,3 @@ const {
</body>
</html>
-
-<!-- <script>
-import LocomotiveScroll from 'locomotive-scroll';
-
-// eslint-disable-next-line unused-imports/no-unused-vars
-const scroll = new LocomotiveScroll({
- el: document.querySelector('[data-scroll-container]'),
- smooth: true,
- lerp: 0.05,
- touchMultiplier: 0,
- resetNativeScroll: false,
-});
-</script> -->
diff --git a/apps/website/src/pages/mods.astro b/apps/website/src/pages/mods.astro
index 5a9b303..ae1002c 100644
--- a/apps/website/src/pages/mods.astro
+++ b/apps/website/src/pages/mods.astro
@@ -124,7 +124,7 @@ const modrinthUrl = `https://modrinth.com/${modrinthType}/${modrinthId}`;
OneConfig brings the simplicity of a client to the everyday user, gives advanced users and developers complete control over everything, while remaining free and open-source.
</Paragraph>
<div class="flex">
- <Button href="/projects/oneconfig/download" style="secondary" iconLeft="oneconfig" text="See OneConfig"/>
+ <Button href="/projects/oneconfig" style="secondary" iconLeft="oneconfig" text="See OneConfig"/>
</div>
</div>
<div slot="right">
diff --git a/package.json b/package.json
index bafd4c4..c109fc5 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,6 @@
"clean": "git clean -qfX .",
"prisma": "cd core && cargo prisma",
"tauri": "pnpm desktop tauri",
-
"desktop": "pnpm --filter @polyfrost/desktop -- ",
"website": "pnpm --filter @polyfrost/website -- ",
"interface": "pnpm --filter @polyfrost/interface -- ",
@@ -34,14 +33,14 @@
},
"devDependencies": {
"@flowr/eslint-config": "^2.1.1-alpha.18",
- "@storybook/react-vite": "^7.6.6",
+ "@storybook/react-vite": "^7.6.7",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
- "turbo": "^1.11.2",
- "turbo-ignore": "^1.11.2",
+ "turbo": "^1.11.3",
+ "turbo-ignore": "^1.11.3",
"typescript": "^5.3.3",
- "vite": "^5.0.10"
+ "vite": "^5.0.11"
}
}
diff --git a/packages/config/package.json b/packages/config/package.json
index 93eaa7a..6f68aed 100644
--- a/packages/config/package.json
+++ b/packages/config/package.json
@@ -13,10 +13,10 @@
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"regexpp": "^3.2.0",
- "vite": "^5.0.10",
+ "vite": "^5.0.11",
"vite-plugin-html": "^3.2.1",
"vite-plugin-svgr": "^4.2.0",
- "vite-tsconfig-paths": "^4.2.2",
- "vitest": "^1.1.0"
+ "vite-tsconfig-paths": "^4.2.3",
+ "vitest": "^1.1.3"
}
}
diff --git a/packages/ui/package.json b/packages/ui/package.json
index dc17985..4a39102 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -18,13 +18,13 @@
"test": "vitest"
},
"dependencies": {
- "@headlessui/react": "^1.7.17",
+ "@headlessui/react": "^1.7.18",
"@headlessui/tailwindcss": "^0.2.0",
"@polyfrost/assets": "workspace:*",
"@react-spring/web": "^9.7.3",
"@tailwindcss/forms": "^0.5.7",
"class-variance-authority": "^0.7.0",
- "clsx": "^2.0.0",
+ "clsx": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
@@ -35,19 +35,19 @@
"zod": "^3.22.4"
},
"devDependencies": {
- "@babel/core": "^7.23.6",
+ "@babel/core": "^7.23.7",
"@polyfrost/config": "workspace:*",
- "@storybook/types": "^7.6.6",
+ "@storybook/types": "^7.6.7",
"@tailwindcss/typography": "^0.5.10",
- "@types/node": "~20.10.5",
- "@types/react": "^18.2.45",
+ "@types/node": "~20.10.7",
+ "@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
- "postcss": "^8.4.32",
- "sass": "^1.69.5",
- "tailwindcss": "^3.4.0",
+ "postcss": "^8.4.33",
+ "sass": "^1.69.7",
+ "tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3",
- "vitest": "^1.1.0"
+ "vitest": "^1.1.3"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b15153c..c020800 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,10 +10,10 @@ importers:
devDependencies:
'@flowr/eslint-config':
specifier: ^2.1.1-alpha.18
- version: 2.1.1-alpha.18(@pnpm/logger@5.0.0)(@vue/compiler-sfc@3.3.13)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react-refresh@0.4.5)(eslint-plugin-react@7.33.2)(eslint@8.56.0)
+ version: 2.1.1-alpha.18(@pnpm/logger@5.0.0)(@vue/compiler-sfc@3.4.6)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react-refresh@0.4.5)(eslint-plugin-react@7.33.2)(eslint@8.56.0)
'@storybook/react-vite':
- specifier: ^7.6.6
- version: 7.6.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@5.0.10)
+ specifier: ^7.6.7
+ version: 7.6.7(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@5.0.11)
eslint-plugin-jsx-a11y:
specifier: ^6.8.0
version: 6.8.0(eslint@8.56.0)
@@ -27,17 +27,17 @@ importers:
specifier: ^0.4.5
version: 0.4.5(eslint@8.56.0)
turbo:
- specifier: ^1.11.2
- version: 1.11.2
+ specifier: ^1.11.3
+ version: 1.11.3
turbo-ignore:
- specifier: ^1.11.2
- version: 1.11.2
+ specifier: ^1.11.3
+ version: 1.11.3
typescript:
specifier: ^5.3.3
version: 5.3.3
vite:
- specifier: ^5.0.10
- version: 5.0.10(less@4.2.0)(sass@1.69.5)
+ specifier: ^5.0.11
+ version: 5.0.11(@types/node@20.10.7)(sass@1.69.7)
.github/actions/publish-artifacts:
dependencies:
@@ -64,32 +64,32 @@ importers:
apps/storybook:
dependencies:
'@storybook/addon-essentials':
- specifier: ^7.6.6
- version: 7.6.6(@types/react-dom@18.2.18)(@types/react@18.2.45)(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^7.6.7
+ version: 7.6.7(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-interactions':
- specifier: ^7.6.6
- version: 7.6.6
+ specifier: ^7.6.7
+ version: 7.6.7
'@storybook/addon-links':
- specifier: ^7.6.6
- version: 7.6.6(react@18.2.0)
+ specifier: ^7.6.7
+ version: 7.6.7(react@18.2.0)
'@storybook/addon-styling':
specifier: ^1.3.7
- version: 1.3.7(@types/react-dom@18.2.18)(@types/react@18.2.45)(less@4.2.0)(postcss@8.4.32)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)(typescript@5.3.3)(webpack@5.89.0)
+ version: 1.3.7(@types/react-dom@18.2.18)(@types/react@18.2.47)(less@4.2.0)(postcss@8.4.33)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.7)(typescript@5.3.3)(webpack@5.89.0)
'@storybook/blocks':
- specifier: ^7.6.6
- version: 7.6.6(@types/react-dom@18.2.18)(@types/react@18.2.45)(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^7.6.7
+ version: 7.6.7(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
'@storybook/react':
- specifier: ^7.6.6
- version: 7.6.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ specifier: ^7.6.7
+ version: 7.6.7(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
'@storybook/react-vite':
- specifier: ^7.6.6
- version: 7.6.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@5.0.10)
+ specifier: ^7.6.7
+ version: 7.6.7(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@5.0.11)
'@storybook/testing-library':
specifier: ^0.2.2
version: 0.2.2
postcss-pseudo-companion-classes:
specifier: ^0.1.1
- version: 0.1.1(postcss@8.4.32)
+ version: 0.1.1(postcss@8.4.33)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -97,8 +97,8 @@ importers:
specifier: ^18.2.0
version: 18.2.0(react@18.2.0)
sass:
- specifier: ^1.69.5
- version: 1.69.5
+ specifier: ^1.69.7
+ version: 1.69.7
devDependencies:
'@polyfrost/config':
specifier: workspace:*
@@ -107,75 +107,69 @@ importers:
specifier: workspace:*
version: link:../../packages/ui
'@types/react':
- specifier: ^18.2.45
- version: 18.2.45
+ specifier: ^18.2.47
+ version: 18.2.47
'@types/react-dom':
specifier: ^18.2.18
version: 18.2.18
'@vitejs/plugin-react':
specifier: ^4.2.1
- version: 4.2.1(vite@5.0.10)
+ version: 4.2.1(vite@5.0.11)
autoprefixer:
specifier: ^10.4.16
- version: 10.4.16(postcss@8.4.32)
+ version: 10.4.16(postcss@8.4.33)
postcss:
- specifier: ^8.4.32
- version: 8.4.32
+ specifier: ^8.4.33
+ version: 8.4.33
prop-types:
specifier: ^15.8.1
version: 15.8.1
storybook:
- specifier: ^7.6.6
- version: 7.6.6
+ specifier: ^7.6.7
+ version: 7.6.7
tailwindcss:
- specifier: ^3.4.0
- version: 3.4.0
+ specifier: ^3.4.1
+ version: 3.4.1
typescript:
specifier: ^5.3.3
version: 5.3.3
vite:
- specifier: ^5.0.10
- version: 5.0.10(less@4.2.0)(sass@1.69.5)
+ specifier: ^5.0.11
+ version: 5.0.11(less@4.2.0)(sass@1.69.7)
apps/website:
dependencies:
'@astrojs/mdx':
- specifier: ^2.0.2
- version: 2.0.2(astro@4.0.7)
+ specifier: ^2.0.3
+ version: 2.0.3(astro@4.1.1)
'@astrojs/rss':
specifier: ^4.0.1
version: 4.0.1
'@astrojs/sitemap':
- specifier: ^3.0.3
- version: 3.0.3
+ specifier: ^3.0.4
+ version: 3.0.4
'@astrojs/tailwind':
- specifier: ^5.0.4
- version: 5.0.4(astro@4.0.7)(tailwindcss@3.4.0)
+ specifier: ^5.1.0
+ version: 5.1.0(astro@4.1.1)(tailwindcss@3.4.1)
astro:
- specifier: ^4.0.7
- version: 4.0.7(@types/node@20.10.5)(sass@1.69.5)(typescript@5.3.3)
- fullpage.js:
- specifier: ^4.0.20
- version: 4.0.20
- locomotive-scroll:
- specifier: ^4.1.4
- version: 4.1.4
+ specifier: ^4.1.1
+ version: 4.1.1(@types/node@20.10.7)(sass@1.69.7)(typescript@5.3.3)
sass:
- specifier: ^1.69.5
- version: 1.69.5
+ specifier: ^1.69.7
+ version: 1.69.7
tailwindcss:
- specifier: ^3.4.0
- version: 3.4.0
+ specifier: ^3.4.1
+ version: 3.4.1
vitest:
- specifier: ^1.1.0
- version: 1.1.0(@types/node@20.10.5)(sass@1.69.5)
+ specifier: ^1.1.3
+ version: 1.1.3(@types/node@20.10.7)(sass@1.69.7)
devDependencies:
'@polyfrost/config':
specifier: workspace:*
version: link:../../packages/config
'@types/node':
- specifier: ~20.10.5
- version: 20.10.5
+ specifier: ~20.10.7
+ version: 20.10.7
node-html-parser:
specifier: ^6.1.12
version: 6.1.12
@@ -189,34 +183,34 @@ importers:
devDependencies:
'@vitejs/plugin-react':
specifier: ^4.2.1
- version: 4.2.1(vite@5.0.10)
+ version: 4.2.1(vite@5.0.11)
regexpp:
specifier: ^3.2.0
version: 3.2.0
vite:
- specifier: ^5.0.10
- version: 5.0.10(less@4.2.0)(sass@1.69.5)
+ specifier: ^5.0.11
+ version: 5.0.11(@types/node@20.10.7)(sass@1.69.7)
vite-plugin-html:
specifier: ^3.2.1
- version: 3.2.1(vite@5.0.10)
+ version: 3.2.1(vite@5.0.11)
vite-plugin-svgr:
specifier: ^4.2.0
- version: 4.2.0(typescript@5.3.3)(vite@5.0.10)
+ version: 4.2.0(typescript@5.3.3)(vite@5.0.11)
vite-tsconfig-paths:
- specifier: ^4.2.2
- version: 4.2.2(typescript@5.3.3)(vite@5.0.10)
+ specifier: ^4.2.3
+ version: 4.2.3(typescript@5.3.3)(vite@5.0.11)
vitest:
- specifier: ^1.1.0
- version: 1.1.0
+ specifier: ^1.1.3
+ version: 1.1.3
packages/ui:
dependencies:
'@headlessui/react':
- specifier: ^1.7.17
- version: 1.7.17(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^1.7.18
+ version: 1.7.18(react-dom@18.2.0)(react@18.2.0)
'@headlessui/tailwindcss':
specifier: ^0.2.0
- version: 0.2.0(tailwindcss@3.4.0)
+ version: 0.2.0(tailwindcss@3.4.1)
'@polyfrost/assets':
specifier: workspace:*
version: link:../assets
@@ -225,13 +219,13 @@ importers:
version: 9.7.3(react-dom@18.2.0)(react@18.2.0)
'@tailwindcss/forms':
specifier: ^0.5.7
- version: 0.5.7(tailwindcss@3.4.0)
+ version: 0.5.7(tailwindcss@3.4.1)
class-variance-authority:
specifier: ^0.7.0
version: 0.7.0
clsx:
- specifier: ^2.0.0
- version: 2.0.0
+ specifier: ^2.1.0
+ version: 2.1.0
react:
specifier: ^18.2.0
version: 18.2.0
@@ -258,47 +252,47 @@ importers:
version: 3.22.4
devDependencies:
'@babel/core':
- specifier: ^7.23.6
- version: 7.23.6
+ specifier: ^7.23.7
+ version: 7.23.7
'@polyfrost/config':
specifier: workspace:*
version: link:../config
'@storybook/types':
- specifier: ^7.6.6
- version: 7.6.6
+ specifier: ^7.6.7
+ version: 7.6.7
'@tailwindcss/typography':
specifier: ^0.5.10
- version: 0.5.10(tailwindcss@3.4.0)
+ version: 0.5.10(tailwindcss@3.4.1)
'@types/node':
- specifier: ~20.10.5
- version: 20.10.5
+ specifier: ~20.10.7
+ version: 20.10.7
'@types/react':
- specifier: ^18.2.45
- version: 18.2.45
+ specifier: ^18.2.47
+ version: 18.2.47
'@types/react-dom':
specifier: ^18.2.18
version: 18.2.18
autoprefixer:
specifier: ^10.4.16
- version: 10.4.16(postcss@8.4.32)
+ version: 10.4.16(postcss@8.4.33)
postcss:
- specifier: ^8.4.32
- version: 8.4.32
+ specifier: ^8.4.33
+ version: 8.4.33
sass:
- specifier: ^1.69.5
- version: 1.69.5
+ specifier: ^1.69.7
+ version: 1.69.7
tailwindcss:
- specifier: ^3.4.0
- version: 3.4.0
+ specifier: ^3.4.1
+ version: 3.4.1
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.0)
+ version: 1.0.7(tailwindcss@3.4.1)
typescript:
specifier: ^5.3.3
version: 5.3.3
vitest:
- specifier: ^1.1.0
- version: 1.1.0(@types/node@20.10.5)(sass@1.69.5)
+ specifier: ^1.1.3
+ version: 1.1.3(@types/node@20.10.7)(sass@1.69.7)
packages:
@@ -398,6 +392,11 @@ packages:
/@astrojs/compiler@2.3.4:
resolution: {integrity: sha512-33/YtWoBCE0cBUNy1kh78FCDXBoBANX87ShgATlAHECYbG2+buNTAgq4Xgz4t5NgnEHPN21GIBC2Mvvwisoutw==}
+ dev: true
+
+ /@astrojs/compiler@2.4.0:
+ resolution: {integrity: sha512-LUN/iG8KcStfChHwTvCg/t91IQFQxguF3CkDLW3tdY2vBKZmOJy9MgtRl20ZGgPtgrykGCtnr4AellEm0bPuFg==}
+ dev: false
/@astrojs/internal-helpers@0.2.1:
resolution: {integrity: sha512-06DD2ZnItMwUnH81LBLco3tWjcZ1lGU9rLCCBaeUCGYe9cI0wKyY2W3kDyoW1I6GmcWgt1fu+D1CTvz+FIKf8A==}
@@ -415,7 +414,7 @@ packages:
remark-gfm: 4.0.0
remark-parse: 11.0.0
remark-rehype: 11.0.0
- remark-smartypants: 2.0.0
+ remark-smartypants: 2.1.0
shikiji: 0.6.13
unified: 11.0.4
unist-util-visit: 5.0.0
@@ -424,16 +423,16 @@ packages:
- supports-color
dev: false
- /@astrojs/mdx@2.0.2(astro@4.0.7):
- resolution: {integrity: sha512-pTkUb0+aiVU8MZU6XQKA/FyXdNOKxHwq+3uCIuzWyqjZyRB9hN3G3iokmkXFJhwgxl6gilkYeAKmmciVwnpq6w==}
+ /@astrojs/mdx@2.0.3(astro@4.1.1):
+ resolution: {integrity: sha512-wFjQX5CihU5B4UAQNwc2R48ph0flpc6/yvDCFANE0agtgI2+BaVcAjuW0EhGOQCZ65dQDqnFKE0lvGs7EADYpg==}
engines: {node: '>=18.14.1'}
peerDependencies:
astro: ^4.0.0
dependencies:
'@astrojs/markdown-remark': 4.0.1
'@mdx-js/mdx': 3.0.0
- acorn: 8.11.2
- astro: 4.0.7(@types/node@20.10.5)(sass@1.69.5)(typescript@5.3.3)
+ acorn: 8.11.3
+ astro: 4.1.1(@types/node@20.10.7)(sass@1.69.7)(typescript@5.3.3)
es-module-lexer: 1.4.1
estree-util-visit: 2.0.0
github-slugger: 2.0.0
@@ -442,7 +441,7 @@ packages:
kleur: 4.1.5
rehype-raw: 7.0.0
remark-gfm: 4.0.0
- remark-smartypants: 2.0.0
+ remark-smartypants: 2.1.0
source-map: 0.7.4
unist-util-visit: 5.0.0
vfile: 6.0.1
@@ -464,24 +463,24 @@ packages:
kleur: 4.1.5
dev: false
- /@astrojs/sitemap@3.0.3:
- resolution: {integrity: sha512-+GRKp1yho9dpHBcMcU6JpbL41k0yYZghOkNsMRb8QIRflbGHvd787tdv9oIZ5NJj0SqAuOlqp2UpqLkJXuAe2A==}
+ /@astrojs/sitemap@3.0.4:
+ resolution: {integrity: sha512-RSqiqs0oD8zTGaClHM0YB8n7e5En+Ihi+6qKthWf47pRkzHpENwlPGvKuEL0kUFXq+GzYot9e2JYH58gtr2q0w==}
dependencies:
sitemap: 7.1.1
zod: 3.22.4
dev: false
- /@astrojs/tailwind@5.0.4(astro@4.0.7)(tailwindcss@3.4.0):
- resolution: {integrity: sha512-50ImfEFRBjndtWus6xJOWQ4EVpZWB4d+hieosMPm1Tca68mNTX+Yi1/PhTMk9q/w7iZPIUK/KGBoovo15O10eQ==}
+ /@astrojs/tailwind@5.1.0(astro@4.1.1)(tailwindcss@3.4.1):
+ resolution: {integrity: sha512-BJoCDKuWhU9FT2qYg+fr6Nfb3qP4ShtyjXGHKA/4mHN94z7BGcmauQK23iy+YH5qWvTnhqkd6mQPQ1yTZTe9Ig==}
peerDependencies:
astro: ^3.0.0 || ^4.0.0
tailwindcss: ^3.0.24
dependencies:
- astro: 4.0.7(@types/node@20.10.5)(sass@1.69.5)(typescript@5.3.3)
- autoprefixer: 10.4.16(postcss@8.4.32)
- postcss: 8.4.32
- postcss-load-config: 4.0.2(postcss@8.4.32)
- tailwindcss: 3.4.0
+ astro: 4.1.1(@types/node@20.10.7)(sass@1.69.7)(typescript@5.3.3)
+ autoprefixer: 10.4.16(postcss@8.4.33)
+ postcss: 8.4.33
+ postcss-load-config: 4.0.2(postcss@8.4.33)
+ tailwindcss: 3.4.1
transitivePeerDependencies:
- ts-node
dev: false
@@ -642,6 +641,29 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/core@7.23.7:
+ resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/helpers': 7.23.8
+ '@babel/parser': 7.23.6
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
+ convert-source-map: 2.0.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
/@babel/generator@7.23.6:
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
@@ -675,42 +697,42 @@ packages:
lru-cache: 5.1.1
semver: 6.3.1
- /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.23.6):
- resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==}
+ /@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
dev: true
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.6):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.7):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
dev: true
- /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.6):
+ /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.7):
resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
@@ -762,6 +784,20 @@ packages:
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
+ dev: true
+
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.7
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.20
/@babel/helper-optimise-call-expression@7.22.5:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
@@ -774,25 +810,25 @@ packages:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.6):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.7):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
dev: true
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.6):
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7):
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -847,6 +883,17 @@ packages:
'@babel/types': 7.23.6
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/helpers@7.23.8:
+ resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.7
+ '@babel/types': 7.23.6
+ transitivePeerDependencies:
+ - supports-color
/@babel/highlight@7.23.4:
resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
@@ -863,672 +910,671 @@ packages:
dependencies:
'@babel/types': 7.23.6
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.6):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.6):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
dev: true
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.6):
- resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==}
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
dev: true
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.6):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.6):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.6):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.6):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.6):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.6):
+ /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.6):
+ /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.6):
+ /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.7):
resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.6
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true<