aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2025-09-25 01:39:56 +0200
committerPolesznyák Márk <contact@pml68.dev>2025-09-25 01:39:56 +0200
commitc0af3a63d6cd7b893ca23aeb442e776955bc2c91 (patch)
tree0fec30f2bc12503e6095271dd32159322355c5c6
parentfix: incorrect social link hover color transition (diff)
downloadpml68.dev-c0af3a63d6cd7b893ca23aeb442e776955bc2c91.tar.gz
feat: "rewrite" in pure HTML/CSS
-rw-r--r--.build.yml11
-rw-r--r--.gitignore10
-rw-r--r--.npmrc1
-rw-r--r--assets/dev.svg (renamed from static/dev.svg)0
-rw-r--r--assets/email.svg (renamed from static/email.svg)0
-rw-r--r--assets/github.svg (renamed from static/github.svg)0
-rw-r--r--assets/pml68.png (renamed from static/pml68.png)bin108203 -> 108203 bytes
-rw-r--r--assets/sourcehut.svg (renamed from static/sourcehut.svg)0
-rw-r--r--assets/telegram.svg (renamed from static/telegram.svg)0
-rw-r--r--assets/wave1.svg (renamed from src/lib/assets/wave1.svg)0
-rw-r--r--assets/wave2.svg (renamed from src/lib/assets/wave2.svg)0
-rw-r--r--index.html53
-rw-r--r--package.json29
-rw-r--r--pnpm-lock.yaml1368
-rw-r--r--projects/index.html61
-rw-r--r--src/app.d.ts14
-rw-r--r--src/app.html12
-rw-r--r--src/app.scss79
-rw-r--r--src/lib/assets/css/projects.scss64
-rw-r--r--src/lib/index.ts1
-rw-r--r--src/lib/projects.json28
-rw-r--r--src/lib/socials.json28
-rw-r--r--src/routes/+layout.svelte18
-rw-r--r--src/routes/+layout.ts2
-rw-r--r--src/routes/+page.svelte34
-rw-r--r--src/routes/projects/+page.svelte38
-rw-r--r--static/steam.svg1
-rw-r--r--style.css147
-rw-r--r--svelte.config.js23
-rw-r--r--tsconfig.json18
-rw-r--r--vite.config.ts18
31 files changed, 263 insertions, 1795 deletions
diff --git a/.build.yml b/.build.yml
index 484bb8e..21b4199 100644
--- a/.build.yml
+++ b/.build.yml
@@ -1,17 +1,10 @@
image: alpine/edge
oauth: pages.sr.ht/PAGES:RW
-packages:
- - pnpm
- - hut
environment:
site: pml68.dev
tasks:
- - build: |
- cd $site
- pnpm install
- pnpm build
- package: |
cd $site
- tar -C build -cvz . > ../site.tar.gz
+ tar -cvz * > ../site.tar.gz
- upload: |
- hut pages publish -d $site site.tar.gz
+ acurl -f https://pages.sr.ht/publish/$site -Fcontent=@site.tar.gz
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 6635cf5..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,10 +0,0 @@
-.DS_Store
-node_modules
-/build
-/.svelte-kit
-/package
-.env
-.env.*
-!.env.example
-vite.config.js.timestamp-*
-vite.config.ts.timestamp-*
diff --git a/.npmrc b/.npmrc
deleted file mode 100644
index b6f27f1..0000000
--- a/.npmrc
+++ /dev/null
@@ -1 +0,0 @@
-engine-strict=true
diff --git a/static/dev.svg b/assets/dev.svg
index 386af10..386af10 100644
--- a/static/dev.svg
+++ b/assets/dev.svg
diff --git a/static/email.svg b/assets/email.svg
index aa1cde3..aa1cde3 100644
--- a/static/email.svg
+++ b/assets/email.svg
diff --git a/static/github.svg b/assets/github.svg
index de072fd..de072fd 100644
--- a/static/github.svg
+++ b/assets/github.svg
diff --git a/static/pml68.png b/assets/pml68.png
index 351f782..351f782 100644
--- a/static/pml68.png
+++ b/assets/pml68.png
Binary files differ
diff --git a/static/sourcehut.svg b/assets/sourcehut.svg
index 25f93e5..25f93e5 100644
--- a/static/sourcehut.svg
+++ b/assets/sourcehut.svg
diff --git a/static/telegram.svg b/assets/telegram.svg
index 24dbdc9..24dbdc9 100644
--- a/static/telegram.svg
+++ b/assets/telegram.svg
diff --git a/src/lib/assets/wave1.svg b/assets/wave1.svg
index 76699ab..76699ab 100644
--- a/src/lib/assets/wave1.svg
+++ b/assets/wave1.svg
diff --git a/src/lib/assets/wave2.svg b/assets/wave2.svg
index 95d41a5..95d41a5 100644
--- a/src/lib/assets/wave2.svg
+++ b/assets/wave2.svg
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..07b69e2
--- /dev/null
+++ b/index.html
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="icon" href="/assets/pml68.png">
+ <link rel="stylesheet" href="/style.css">
+ <title>pml68</title>
+ </head>
+
+ <body>
+ <img src="/assets/wave1.svg" alt="Wave decoration" class="wave wave1">
+ <img src="/assets/wave2.svg" alt="Wave decoration" class="wave wave2">
+
+ <div class="container">
+ <div class="main">
+ <h1>pml68</h1>
+ <p>Just your average IT student</p>
+ <div class="socials">
+ <a href="https://github.com/pml68" class="icon" target="_blank" aria-label="GitHub">
+ <svg class="social-icon" viewbox="0 0 512 512">
+ <use href="/assets/github.svg#github"></use>
+ </svg>
+ </a>
+ <a href="https://sr.ht/~pml68" class="icon" target="_blank" aria-label="Sourcehut">
+ <svg class="social-icon" viewbox="0 0 512 512">
+ <use href="/assets/sourcehut.svg#sourcehut"></use>
+ </svg>
+ </a>
+ <a href="https://dev.to/pml68" class="icon" target="_blank" aria-label="DEV.to">
+ <svg class="social-icon" viewbox="0 0 512 512">
+ <use href="/assets/dev.svg#dev"></use>
+ </svg>
+ </a>
+ <a href="https://t.me/pml68_1" class="icon" target="_blank" aria-label="Telegram">
+ <svg class="social-icon" viewbox="0 0 512 512">
+ <use href="/assets/telegram.svg#telegram"></use>
+ </svg>
+ </a>
+ <a href="mailto:contact@pml68.dev" class="icon" target="_blank" aria-label="Email">
+ <svg class="social-icon" viewbox="0 0 512 512">
+ <use href="/assets/email.svg#email"></use>
+ </svg>
+ </a>
+ </div>
+ <br>
+ <div>
+ Check out my projects <a href="/projects"><b>here</b></a>
+ </div>
+ </div>
+ </div>
+ </body>
+</html>
diff --git a/package.json b/package.json
deleted file mode 100644
index d2e92c8..0000000
--- a/package.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "name": "website",
- "version": "1.0.3",
- "description": "My personal website, built with SvelteKit",
- "author": "pml68",
- "license": "GPL-3.0",
- "private": true,
- "scripts": {
- "dev": "vite dev",
- "build": "vite build",
- "preview": "vite preview",
- "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
- "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
- },
- "devDependencies": {
- "@poppanator/sveltekit-svg": "^4.2.1",
- "@sveltejs/adapter-static": "^3.0.9",
- "@sveltejs/kit": "^2.42.2",
- "@sveltejs/vite-plugin-svelte": "^4.0.4",
- "dotenv": "^16.6.1",
- "sass": "^1.93.0",
- "svelte": "^5.39.4",
- "svelte-check": "^4.3.1",
- "tslib": "^2.8.1",
- "typescript": "^5.9.2",
- "vite": "^5.4.20"
- },
- "type": "module"
-}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
deleted file mode 100644
index 1ad2d44..0000000
--- a/pnpm-lock.yaml
+++ /dev/null
@@ -1,1368 +0,0 @@
-lockfileVersion: '9.0'
-
-settings:
- autoInstallPeers: true
- excludeLinksFromLockfile: false
-
-importers:
-
- .:
- devDependencies:
- '@poppanator/sveltekit-svg':
- specifier: ^4.2.1
- version: 4.2.1(rollup@4.52.0)(svelte@5.39.4)(svgo@3.3.2)(vite@5.4.20(sass@1.93.0))
- '@sveltejs/adapter-static':
- specifier: ^3.0.9
- version: 3.0.9(@sveltejs/kit@2.42.2(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.4)(vite@5.4.20(sass@1.93.0)))(svelte@5.39.4)(vite@5.4.20(sass@1.93.0)))
- '@sveltejs/kit':
- specifier: ^2.42.2
- version: 2.42.2(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.4)(vite@5.4.20(sass@1.93.0)))(svelte@5.39.4)(vite@5.4.20(sass@1.93.0))
- '@sveltejs/vite-plugin-svelte':
- specifier: ^4.0.4
- version: 4.0.4(svelte@5.39.4)(vite@5.4.20(sass@1.93.0))
- dotenv:
- specifier: ^16.6.1
- version: 16.6.1
- sass:
- specifier: ^1.93.0
- version: 1.93.0
- svelte:
- specifier: ^5.39.4
- version: 5.39.4
- svelte-check:
- specifier: ^4.3.1
- version: 4.3.1(picomatch@4.0.3)(svelte@5.39.4)(typescript@5.9.2)
- tslib:
- specifier: ^2.8.1
- version: 2.8.1
- typescript:
- specifier: ^5.9.2
- version: 5.9.2
- vite:
- specifier: ^5.4.20
- version: 5.4.20(sass@1.93.0)
-
-packages:
-
- '@esbuild/aix-ppc64@0.21.5':
- resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
-
- '@esbuild/android-arm64@0.21.5':
- resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
- '@esbuild/android-arm@0.21.5':
- resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
-
- '@esbuild/android-x64@0.21.5':
- resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
- '@esbuild/darwin-arm64@0.21.5':
- resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
- '@esbuild/darwin-x64@0.21.5':
- resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
- '@esbuild/freebsd-arm64@0.21.5':
- resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
- '@esbuild/freebsd-x64@0.21.5':
- resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
-
- '@esbuild/linux-arm64@0.21.5':
- resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
- '@esbuild/linux-arm@0.21.5':
- resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
- '@esbuild/linux-ia32@0.21.5':
- resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
- '@esbuild/linux-loong64@0.21.5':
- resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
-
- '@esbuild/linux-mips64el@0.21.5':
- resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
- '@esbuild/linux-ppc64@0.21.5':
- resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
-
- '@esbuild/linux-riscv64@0.21.5':
- resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
- '@esbuild/linux-s390x@0.21.5':
- resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
- '@esbuild/linux-x64@0.21.5':
- resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
- '@esbuild/netbsd-x64@0.21.5':
- resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
-
- '@esbuild/openbsd-x64@0.21.5':
- resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/sunos-x64@0.21.5':
- resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
- '@esbuild/win32-arm64@0.21.5':
- resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
- '@esbuild/win32-ia32@0.21.5':
- resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
- '@esbuild/win32-x64@0.21.5':
- resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
- '@jridgewell/gen-mapping@0.3.13':
- resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
-
- '@jridgewell/remapping@2.3.5':
- resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
-
- '@jridgewell/resolve-uri@3.1.2':
- resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
- engines: {node: '>=6.0.0'}
-
- '@jridgewell/sourcemap-codec@1.5.5':
- resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
-
- '@jridgewell/trace-mapping@0.3.31':
- resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
-
- '@parcel/watcher-android-arm64@2.5.1':
- resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [android]
-
- '@parcel/watcher-darwin-arm64@2.5.1':
- resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [darwin]
-
- '@parcel/watcher-darwin-x64@2.5.1':
- resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [darwin]
-
- '@parcel/watcher-freebsd-x64@2.5.1':
- resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [freebsd]
-
- '@parcel/watcher-linux-arm-glibc@2.5.1':
- resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm]
- os: [linux]
-
- '@parcel/watcher-linux-arm-musl@2.5.1':
- resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm]
- os: [linux]
-
- '@parcel/watcher-linux-arm64-glibc@2.5.1':
- resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [linux]
-
- '@parcel/watcher-linux-arm64-musl@2.5.1':
- resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [linux]
-
- '@parcel/watcher-linux-x64-glibc@2.5.1':
- resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [linux]
-
- '@parcel/watcher-linux-x64-musl@2.5.1':
- resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [linux]
-
- '@parcel/watcher-win32-arm64@2.5.1':
- resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [win32]
-
- '@parcel/watcher-win32-ia32@2.5.1':
- resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
- engines: {node: '>= 10.0.0'}
- cpu: [ia32]
- os: [win32]
-
- '@parcel/watcher-win32-x64@2.5.1':
- resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [win32]
-
- '@parcel/watcher@2.5.1':
- resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
- engines: {node: '>= 10.0.0'}
-
- '@polka/url@1.0.0-next.29':
- resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
-
- '@poppanator/sveltekit-svg@4.2.1':
- resolution: {integrity: sha512-w7jl4EVOOF+X+uv2BEUiMDJwds+GfbczwGpcS0+rsjIsKYmqmwMi4ts3bVZR9ZvdFHWy5rS84U+pSBClz6cbBg==}
- peerDependencies:
- svelte: '>=4.x'
- svgo: '>=3.x'
- vite: '>=4.x'
-
- '@rollup/pluginutils@5.3.0':
- resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
-
- '@rollup/rollup-android-arm-eabi@4.52.0':
- resolution: {integrity: sha512-VxDYCDqOaR7NXzAtvRx7G1u54d2kEHopb28YH/pKzY6y0qmogP3gG7CSiWsq9WvDFxOQMpNEyjVAHZFXfH3o/A==}
- cpu: [arm]
- os: [android]
-
- '@rollup/rollup-android-arm64@4.52.0':
- resolution: {integrity: sha512-pqDirm8koABIKvzL59YI9W9DWbRlTX7RWhN+auR8HXJxo89m4mjqbah7nJZjeKNTNYopqL+yGg+0mhCpf3xZtQ==}
- cpu: [arm64]
- os: [android]
-
- '@rollup/rollup-darwin-arm64@4.52.0':
- resolution: {integrity: sha512-YCdWlY/8ltN6H78HnMsRHYlPiKvqKagBP1r+D7SSylxX+HnsgXGCmLiV3Y4nSyY9hW8qr8U9LDUx/Lo7M6MfmQ==}
- cpu: [arm64]
- os: [darwin]
-
- '@rollup/rollup-darwin-x64@4.52.0':
- resolution: {integrity: sha512-z4nw6y1j+OOSGzuVbSWdIp1IUks9qNw4dc7z7lWuWDKojY38VMWBlEN7F9jk5UXOkUcp97vA1N213DF+Lz8BRg==}
- cpu: [x64]
- os: [darwin]
-
- '@rollup/rollup-freebsd-arm64@4.52.0':
- resolution: {integrity: sha512-Q/dv9Yvyr5rKlK8WQJZVrp5g2SOYeZUs9u/t2f9cQ2E0gJjYB/BWoedXfUT0EcDJefi2zzVfhcOj8drWCzTviw==}
- cpu: [arm64]
- os: [freebsd]
-
- '@rollup/rollup-freebsd-x64@4.52.0':
- resolution: {integrity: sha512-kdBsLs4Uile/fbjZVvCRcKB4q64R+1mUq0Yd7oU1CMm1Av336ajIFqNFovByipciuUQjBCPMxwJhCgfG2re3rg==}
- cpu: [x64]
- os: [freebsd]
-
- '@rollup/rollup-linux-arm-gnueabihf@4.52.0':
- resolution: {integrity: sha512-aL6hRwu0k7MTUESgkg7QHY6CoqPgr6gdQXRJI1/VbFlUMwsSzPGSR7sG5d+MCbYnJmJwThc2ol3nixj1fvI/zQ==}
- cpu: [arm]
- os: [linux]
-
- '@rollup/rollup-linux-arm-musleabihf@4.52.0':
- resolution: {integrity: sha512-BTs0M5s1EJejgIBJhCeiFo7GZZ2IXWkFGcyZhxX4+8usnIo5Mti57108vjXFIQmmJaRyDwmV59Tw64Ap1dkwMw==}
- cpu: [arm]
- os: [linux]
-
- '@rollup/rollup-linux-arm64-gnu@4.52.0':
- resolution: {integrity: sha512-uj672IVOU9m08DBGvoPKPi/J8jlVgjh12C9GmjjBxCTQc3XtVmRkRKyeHSmIKQpvJ7fIm1EJieBUcnGSzDVFyw==}
- cpu: [arm64]
- os: [linux]
-
- '@rollup/rollup-linux-arm64-musl@4.52.0':
- resolution: {integrity: sha512-/+IVbeDMDCtB/HP/wiWsSzduD10SEGzIZX2945KSgZRNi4TSkjHqRJtNTVtVb8IRwhJ65ssI56krlLik+zFWkw==}
- cpu: [arm64]
- os: [linux]
-
- '@rollup/rollup-linux-loong64-gnu@4.52.0':
- resolution: {integrity: sha512-U1vVzvSWtSMWKKrGoROPBXMh3Vwn93TA9V35PldokHGqiUbF6erSzox/5qrSMKp6SzakvyjcPiVF8yB1xKr9Pg==}
- cpu: [loong64]
- os: [linux]
-
- '@rollup/rollup-linux-ppc64-gnu@4.52.0':
- resolution: {integrity: sha512-X/4WfuBAdQRH8cK3DYl8zC00XEE6aM472W+QCycpQJeLWVnHfkv7RyBFVaTqNUMsTgIX8ihMjCvFF9OUgeABzw==}
- cpu: [ppc64]
- os: [linux]
-
- '@rollup/rollup-linux-riscv64-gnu@4.52.0':
- resolution: {integrity: sha512-xIRYc58HfWDBZoLmWfWXg2Sq8VCa2iJ32B7mqfWnkx5mekekl0tMe7FHpY8I72RXEcUkaWawRvl3qA55og+cwQ==}
- cpu: [riscv64]
- os: [linux]
-
- '@rollup/rollup-linux-riscv64-musl@4.52.0':
- resolution: {integrity: sha512-mbsoUey05WJIOz8U1WzNdf+6UMYGwE3fZZnQqsM22FZ3wh1N887HT6jAOjXs6CNEK3Ntu2OBsyQDXfIjouI4dw==}
- cpu: [riscv64]
- os: [linux]
-
- '@rollup/rollup-linux-s390x-gnu@4.52.0':
- resolution: {integrity: sha512-qP6aP970bucEi5KKKR4AuPFd8aTx9EF6BvutvYxmZuWLJHmnq4LvBfp0U+yFDMGwJ+AIJEH5sIP+SNypauMWzg==}
- cpu: [s390x]
- os: [linux]
-
- '@rollup/rollup-linux-x64-gnu@4.52.0':
- resolution: {integrity: sha512-nmSVN+F2i1yKZ7rJNKO3G7ZzmxJgoQBQZ/6c4MuS553Grmr7WqR7LLDcYG53Z2m9409z3JLt4sCOhLdbKQ3HmA==}
- cpu: [x64]
- os: [linux]
-
- '@rollup/rollup-linux-x64-musl@4.52.0':
- resolution: {integrity: sha512-2d0qRo33G6TfQVjaMR71P+yJVGODrt5V6+T0BDYH4EMfGgdC/2HWDVjSSFw888GSzAZUwuska3+zxNUCDco6rQ==}
- cpu: [x64]
- os: [linux]
-
- '@rollup/rollup-openharmony-arm64@4.52.0':
- resolution: {integrity: sha512-A1JalX4MOaFAAyGgpO7XP5khquv/7xKzLIyLmhNrbiCxWpMlnsTYr8dnsWM7sEeotNmxvSOEL7F65j0HXFcFsw==}
- cpu: [arm64]
- os: [openharmony]
-
- '@rollup/rollup-win32-arm64-msvc@4.52.0':
- resolution: {integrity: sha512-YQugafP/rH0eOOHGjmNgDURrpYHrIX0yuojOI8bwCyXwxC9ZdTd3vYkmddPX0oHONLXu9Rb1dDmT0VNpjkzGGw==}
- cpu: [arm64]
- os: [win32]
-
- '@rollup/rollup-win32-ia32-msvc@4.52.0':
- resolution: {integrity: sha512-zYdUYhi3Qe2fndujBqL5FjAFzvNeLxtIqfzNEVKD1I7C37/chv1VxhscWSQHTNfjPCrBFQMnynwA3kpZpZ8w4A==}
- cpu: [ia32]
- os: [win32]
-
- '@rollup/rollup-win32-x64-gnu@4.52.0':
- resolution: {integrity: sha512-fGk03kQylNaCOQ96HDMeT7E2n91EqvCDd3RwvT5k+xNdFCeMGnj5b5hEgTGrQuyidqSsD3zJDQ21QIaxXqTBJw==}
- cpu: [x64]
- os: [win32]
-
- '@rollup/rollup-win32-x64-msvc@4.52.0':
- resolution: {integrity: sha512-6iKDCVSIUQ8jPMoIV0OytRKniaYyy5EbY/RRydmLW8ZR3cEBhxbWl5ro0rkUNe0ef6sScvhbY79HrjRm8i3vDQ==}
- cpu: [x64]
- os: [win32]
-
- '@standard-schema/spec@1.0.0':
- resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==}
-
- '@sveltejs/acorn-typescript@1.0.5':
- resolution: {integrity: sha512-IwQk4yfwLdibDlrXVE04jTZYlLnwsTT2PIOQQGNLWfjavGifnk1JD1LcZjZaBTRcxZu2FfPfNLOE04DSu9lqtQ==}
- peerDependencies:
- acorn: ^8.9.0
-
- '@sveltejs/adapter-static@3.0.9':
- resolution: {integrity: sha512-aytHXcMi7lb9ljsWUzXYQ0p5X1z9oWud2olu/EpmH7aCu4m84h7QLvb5Wp+CFirKcwoNnYvYWhyP/L8Vh1ztdw==}
- peerDependencies:
- '@sveltejs/kit': ^2.0.0
-
- '@sveltejs/kit@2.42.2':
- resolution: {integrity: sha512-FcNICFvlSYjPiAgk8BpqTEnXkaUj6I6wDwpQBxKMpsYhUc2Q5STgsVpXOG5LqwFpUAoLAXQ4wdWul7EcAG67JQ==}
- engines: {node: '>=18.13'}
- hasBin: true
- peerDependencies:
- '@opentelemetry/api': ^1.0.0
- '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0
- svelte: ^4.0.0 || ^5.0.0-next.0
- vite: ^5.0.3 || ^6.0.0 || ^7.0.0-beta.0
- peerDependenciesMeta:
- '@opentelemetry/api':
- optional: true
-
- '@sveltejs/vite-plugin-svelte-inspector@3.0.1':
- resolution: {integrity: sha512-2CKypmj1sM4GE7HjllT7UKmo4Q6L5xFRd7VMGEWhYnZ+wc6AUVU01IBd7yUi6WnFndEwWoMNOd6e8UjoN0nbvQ==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22}
- peerDependencies:
- '@sveltejs/vite-plugin-svelte': ^4.0.0-next.0||^4.0.0
- svelte: ^5.0.0-next.96 || ^5.0.0
- vite: ^5.0.0
-
- '@sveltejs/vite-plugin-svelte@4.0.4':
- resolution: {integrity: sha512-0ba1RQ/PHen5FGpdSrW7Y3fAMQjrXantECALeOiOdBdzR5+5vPP6HVZRLmZaQL+W8m++o+haIAKq5qT+MiZ7VA==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22}
- peerDependencies:
- svelte: ^5.0.0-next.96 || ^5.0.0
- vite: ^5.0.0
-
- '@trysound/sax@0.2.0':
- resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
- engines: {node: '>=10.13.0'}
-
- '@types/cookie@0.6.0':
- resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
-
- '@types/estree@1.0.8':
- resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
-
- acorn@8.15.0:
- resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
- aria-query@5.3.2:
- resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
- engines: {node: '>= 0.4'}
-
- axobject-query@4.1.0:
- resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
- engines: {node: '>= 0.4'}
-
- boolbase@1.0.0:
- resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
-
- braces@3.0.3:
- resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
- engines: {node: '>=8'}
-
- chokidar@4.0.3:
- resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
- engines: {node: '>= 14.16.0'}
-
- clsx@2.1.1:
- resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
- engines: {node: '>=6'}
-
- commander@7.2.0:
- resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
- engines: {node: '>= 10'}
-
- cookie@0.6.0:
- resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
- engines: {node: '>= 0.6'}
-
- css-select@5.2.2:
- resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
-
- css-tree@2.2.1:
- resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
- engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
-
- css-tree@2.3.1:
- resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
- engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
-
- css-what@6.2.2:
- resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
- engines: {node: '>= 6'}
-
- csso@5.0.5:
- resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
- engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
-
- debug@4.4.3:
- resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
- deepmerge@4.3.1:
- resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
- engines: {node: '>=0.10.0'}
-
- detect-libc@1.0.3:
- resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
- engines: {node: '>=0.10'}
- hasBin: true
-
- devalue@5.3.2:
- resolution: {integrity: sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==}
-
- dom-serializer@2.0.0:
- resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
-
- domelementtype@2.3.0:
- resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
-
- domhandler@5.0.3:
- resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
- engines: {node: '>= 4'}
-
- domutils@3.2.2:
- resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
-
- dotenv@16.6.1:
- resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
- engines: {node: '>=12'}
-
- entities@4.5.0:
- resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
- engines: {node: '>=0.12'}
-
- esbuild@0.21.5:
- resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
- engines: {node: '>=12'}
- hasBin: true
-
- esm-env@1.2.2:
- resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==}
-
- esrap@2.1.0:
- resolution: {integrity: sha512-yzmPNpl7TBbMRC5Lj2JlJZNPml0tzqoqP5B1JXycNUwtqma9AKCO0M2wHrdgsHcy1WRW7S9rJknAMtByg3usgA==}
-
- estree-walker@2.0.2:
- resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
-
- fdir@6.5.0:
- resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- picomatch: ^3 || ^4
- peerDependenciesMeta:
- picomatch:
- optional: true
-
- fill-range@7.1.1:
- resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
- engines: {node: '>=8'}
-
- fsevents@2.3.3:
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
- os: [darwin]
-
- immutable@5.1.3:
- resolution: {integrity: sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==}
-
- is-extglob@2.1.1:
- resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
- engines: {node: '>=0.10.0'}
-
- is-glob@4.0.3:
- resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
- engines: {node: '>=0.10.0'}
-
- is-number@7.0.0:
- resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
- engines: {node: '>=0.12.0'}
-
- is-reference@3.0.3:
- resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
-
- kleur@4.1.5:
- resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
- engines: {node: '>=6'}
-
- locate-character@3.0.0:
- resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
-
- magic-string@0.30.19:
- resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==}
-
- mdn-data@2.0.28:
- resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
-
- mdn-data@2.0.30:
- resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
-
- micromatch@4.0.8:
- resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
- engines: {node: '>=8.6'}
-
- mri@1.2.0:
- resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
- engines: {node: '>=4'}
-
- mrmime@2.0.1:
- resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
- engines: {node: '>=10'}
-
- ms@2.1.3:
- resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
-
- nanoid@3.3.11:
- resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
-
- node-addon-api@7.1.1:
- resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
-
- nth-check@2.1.1:
- resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
-
- picocolors@1.1.1:
- resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
-
- picomatch@2.3.1:
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
- engines: {node: '>=8.6'}
-
- picomatch@4.0.3:
- resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
- engines: {node: '>=12'}
-
- postcss@8.5.6:
- resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
- engines: {node: ^10 || ^12 || >=14}
-
- readdirp@4.1.2:
- resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
- engines: {node: '>= 14.18.0'}
-
- rollup@4.52.0:
- resolution: {integrity: sha512-+IuescNkTJQgX7AkIDtITipZdIGcWF0pnVvZTWStiazUmcGA2ag8dfg0urest2XlXUi9kuhfQ+qmdc5Stc3z7g==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
-
- sade@1.8.1:
- resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
- engines: {node: '>=6'}
-
- sass@1.93.0:
- resolution: {integrity: sha512-CQi5/AzCwiubU3dSqRDJ93RfOfg/hhpW1l6wCIvolmehfwgCI35R/0QDs1+R+Ygrl8jFawwwIojE2w47/mf94A==}
- engines: {node: '>=14.0.0'}
- hasBin: true
-
- set-cookie-parser@2.7.1:
- resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==}
-
- sirv@3.0.2:
- resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
- engines: {node: '>=18'}
-
- source-map-js@1.2.1:
- resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
- engines: {node: '>=0.10.0'}
-
- svelte-check@4.3.1:
- resolution: {integrity: sha512-lkh8gff5gpHLjxIV+IaApMxQhTGnir2pNUAqcNgeKkvK5bT/30Ey/nzBxNLDlkztCH4dP7PixkMt9SWEKFPBWg==}
- engines: {node: '>= 18.0.0'}
- hasBin: true
- peerDependencies:
- svelte: ^4.0.0 || ^5.0.0-next.0
- typescript: '>=5.0.0'
-
- svelte@5.39.4:
- resolution: {integrity: sha512-VU729KzEau1l6d6d25EnRQhdkwwYdTQxQrF8gdUfjZ3dCjrG7VmRMylMxx92ayO9/z5PKWpDrShJdzc4PGW1uA==}
- engines: {node: '>=18'}
-
- svgo@3.3.2:
- resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==}
- engines: {node: '>=14.0.0'}
- hasBin: true
-
- to-regex-range@5.0.1:
- resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
- engines: {node: '>=8.0'}
-
- totalist@3.0.1:
- resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
- engines: {node: '>=6'}
-
- tslib@2.8.1:
- resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
-
- typescript@5.9.2:
- resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
- engines: {node: '>=14.17'}
- hasBin: true
-
- vite@5.4.20:
- resolution: {integrity: sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- sass-embedded: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
-
- vitefu@1.1.1:
- resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==}
- peerDependencies:
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0
- peerDependenciesMeta:
- vite:
- optional: true
-
- zimmerframe@1.1.4:
- resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==}
-
-snapshots:
-
- '@esbuild/aix-ppc64@0.21.5':
- optional: true
-
- '@esbuild/android-arm64@0.21.5':
- optional: true
-
- '@esbuild/android-arm@0.21.5':
- optional: true
-
- '@esbuild/android-x64@0.21.5':
- optional: true
-
- '@esbuild/darwin-arm64@0.21.5':
- optional: true
-
- '@esbuild/darwin-x64@0.21.5':
- optional: true
-
- '@esbuild/freebsd-arm64@0.21.5':
- optional: true
-
- '@esbuild/freebsd-x64@0.21.5':
- optional: true
-
- '@esbuild/linux-arm64@0.21.5':
- optional: true
-
- '@esbuild/linux-arm@0.21.5':
- optional: true
-
- '@esbuild/linux-ia32@0.21.5':
- optional: true
-
- '@esbuild/linux-loong64@0.21.5':
- optional: true
-
- '@esbuild/linux-mips64el@0.21.5':
- optional: true
-
- '@esbuild/linux-ppc64@0.21.5':
- optional: true
-
- '@esbuild/linux-riscv64@0.21.5':
- optional: true
-
- '@esbuild/linux-s390x@0.21.5':
- optional: true
-
- '@esbuild/linux-x64@0.21.5':
- optional: true
-
- '@esbuild/netbsd-x64@0.21.5':
- optional: true
-
- '@esbuild/openbsd-x64@0.21.5':
- optional: true
-
- '@esbuild/sunos-x64@0.21.5':
- optional: true
-
- '@esbuild/win32-arm64@0.21.5':
- optional: true
-
- '@esbuild/win32-ia32@0.21.5':
- optional: true
-
- '@esbuild/win32-x64@0.21.5':
- optional: true
-
- '@jridgewell/gen-mapping@0.3.13':
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
- '@jridgewell/trace-mapping': 0.3.31
-
- '@jridgewell/remapping@2.3.5':
- dependencies:
- '@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.31
-
- '@jridgewell/resolve-uri@3.1.2': {}
-
- '@jridgewell/sourcemap-codec@1.5.5': {}
-
- '@jridgewell/trace-mapping@0.3.31':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.5
-
- '@parcel/watcher-android-arm64@2.5.1':
- optional: true
-
- '@parcel/watcher-darwin-arm64@2.5.1':
- optional: true
-
- '@parcel/watcher-darwin-x64@2.5.1':
- optional: true
-
- '@parcel/watcher-freebsd-x64@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm-glibc@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm-musl@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm64-glibc@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm64-musl@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-x64-glibc@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-x64-musl@2.5.1':
- optional: true
-
- '@parcel/watcher-win32-arm64@2.5.1':
- optional: true
-
- '@parcel/watcher-win32-ia32@2.5.1':
- optional: true
-
- '@parcel/watcher-win32-x64@2.5.1':
- optional: true
-
- '@parcel/watcher@2.5.1':
- dependencies:
- detect-libc: 1.0.3
- is-glob: 4.0.3
- micromatch: 4.0.8
- node-addon-api: 7.1.1
- optionalDependencies:
- '@parcel/watcher-android-arm64': 2.5.1
- '@parcel/watcher-darwin-arm64': 2.5.1
- '@parcel/watcher-darwin-x64': 2.5.1
- '@parcel/watcher-freebsd-x64': 2.5.1
- '@parcel/watcher-linux-arm-glibc': 2.5.1
- '@parcel/watcher-linux-arm-musl': 2.5.1
- '@parcel/watcher-linux-arm64-glibc': 2.5.1
- '@parcel/watcher-linux-arm64-musl': 2.5.1
- '@parcel/watcher-linux-x64-glibc': 2.5.1
- '@parcel/watcher-linux-x64-musl': 2.5.1
- '@parcel/watcher-win32-arm64': 2.5.1
- '@parcel/watcher-win32-ia32': 2.5.1
- '@parcel/watcher-win32-x64': 2.5.1
- optional: true
-
- '@polka/url@1.0.0-next.29': {}
-
- '@poppanator/sveltekit-svg@4.2.1(rollup@4.52.0)(svelte@5.39.4)(svgo@3.3.2)(vite@5.4.20(sass@1.93.0))':
- dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.52.0)
- svelte: 5.39.4
- svgo: 3.3.2
- vite: 5.4.20(sass@1.93.0)
- transitivePeerDependencies:
- - rollup
-
- '@rollup/pluginutils@5.3.0(rollup@4.52.0)':
- dependencies:
- '@types/estree': 1.0.8
- estree-walker: 2.0.2
- picomatch: 4.0.3
- optionalDependencies:
- rollup: 4.52.0
-
- '@rollup/rollup-android-arm-eabi@4.52.0':
- optional: true
-
- '@rollup/rollup-android-arm64@4.52.0':
- optional: true
-
- '@rollup/rollup-darwin-arm64@4.52.0':
- optional: true
-
- '@rollup/rollup-darwin-x64@4.52.0':
- optional: true
-
- '@rollup/rollup-freebsd-arm64@4.52.0':
- optional: true
-
- '@rollup/rollup-freebsd-x64@4.52.0':
- optional: true
-
- '@rollup/rollup-linux-arm-gnueabihf@4.52.0':
- optional: true
-
- '@rollup/rollup-linux-arm-musleabihf@4.52.0':
- optional: true
-
- '@rollup/rollup-linux-arm64-gnu@4.52.0':
- optional: true
-
- '@rollup/rollup-linux-arm64-musl@4.52.0':
- optional: true
-
- '@rollup/rollup-linux-loong64-gnu@4.52.0':
- optional: true
-
- '@rollup/rollup-linux-ppc64-gnu@4.52.0':
- optional: true
-
- '@rollup/rollup-linux-riscv64-gnu@4.52.0':
- optional: true
-
- '@rollup/rollup-linux-riscv64-musl@4.52.0':
- optional: true
-
- '@rollup/rollup-linux-s390x-gnu@4.52.0':
- optional: true
-
- '@rollup/rollup-linux-x64-gnu@4.52.0':
- optional: true
-
- '@rollup/rollup-linux-x64-musl@4.52.0':
- optional: true
-
- '@rollup/rollup-openharmony-arm64@4.52.0':
- optional: true
-
- '@rollup/rollup-win32-arm64-msvc@4.52.0':
- optional: true
-
- '@rollup/rollup-win32-ia32-msvc@4.52.0':
- optional: true
-
- '@rollup/rollup-win32-x64-gnu@4.52.0':
- optional: true
-
- '@rollup/rollup-win32-x64-msvc@4.52.0':
- optional: true
-
- '@standard-schema/spec@1.0.0': {}
-
- '@sveltejs/acorn-typescript@1.0.5(acorn@8.15.0)':
- dependencies:
- acorn: 8.15.0
-
- '@sveltejs/adapter-static@3.0.9(@sveltejs/kit@2.42.2(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.4)(vite@5.4.20(sass@1.93.0)))(svelte@5.39.4)(vite@5.4.20(sass@1.93.0)))':
- dependencies:
- '@sveltejs/kit': 2.42.2(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.4)(vite@5.4.20(sass@1.93.0)))(svelte@5.39.4)(vite@5.4.20(sass@1.93.0))
-
- '@sveltejs/kit@2.42.2(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.4)(vite@5.4.20(sass@1.93.0)))(svelte@5.39.4)(vite@5.4.20(sass@1.93.0))':
- dependencies:
- '@standard-schema/spec': 1.0.0
- '@sveltejs/acorn-typescript': 1.0.5(acorn@8.15.0)
- '@sveltejs/vite-plugin-svelte': 4.0.4(svelte@5.39.4)(vite@5.4.20(sass@1.93.0))
- '@types/cookie': 0.6.0
- acorn: 8.15.0
- cookie: 0.6.0
- devalue: 5.3.2
- esm-env: 1.2.2
- kleur: 4.1.5
- magic-string: 0.30.19
- mrmime: 2.0.1
- sade: 1.8.1
- set-cookie-parser: 2.7.1
- sirv: 3.0.2
- svelte: 5.39.4
- vite: 5.4.20(sass@1.93.0)
-
- '@sveltejs/vite-plugin-svelte-inspector@3.0.1(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.4)(vite@5.4.20(sass@1.93.0)))(svelte@5.39.4)(vite@5.4.20(sass@1.93.0))':
- dependencies:
- '@sveltejs/vite-plugin-svelte': 4.0.4(svelte@5.39.4)(vite@5.4.20(sass@1.93.0))
- debug: 4.4.3
- svelte: 5.39.4
- vite: 5.4.20(sass@1.93.0)
- transitivePeerDependencies:
- - supports-color
-
- '@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.4)(vite@5.4.20(sass@1.93.0))':
- dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 3.0.1(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.39.4)(vite@5.4.20(sass@1.93.0)))(svelte@5.39.4)(vite@5.4.20(sass@1.93.0))
- debug: 4.4.3
- deepmerge: 4.3.1
- kleur: 4.1.5
- magic-string: 0.30.19
- svelte: 5.39.4
- vite: 5.4.20(sass@1.93.0)
- vitefu: 1.1.1(vite@5.4.20(sass@1.93.0))
- transitivePeerDependencies:
- - supports-color
-
- '@trysound/sax@0.2.0': {}
-
- '@types/cookie@0.6.0': {}
-
- '@types/estree@1.0.8': {}
-
- acorn@8.15.0: {}
-
- aria-query@5.3.2: {}
-
- axobject-query@4.1.0: {}
-
- boolbase@1.0.0: {}
-
- braces@3.0.3:
- dependencies:
- fill-range: 7.1.1
- optional: true
-
- chokidar@4.0.3:
- dependencies:
- readdirp: 4.1.2
-
- clsx@2.1.1: {}
-
- commander@7.2.0: {}
-
- cookie@0.6.0: {}
-
- css-select@5.2.2:
- dependencies:
- boolbase: 1.0.0
- css-what: 6.2.2
- domhandler: 5.0.3
- domutils: 3.2.2
- nth-check: 2.1.1
-
- css-tree@2.2.1:
- dependencies:
- mdn-data: 2.0.28
- source-map-js: 1.2.1
-
- css-tree@2.3.1:
- dependencies:
- mdn-data: 2.0.30
- source-map-js: 1.2.1
-
- css-what@6.2.2: {}
-
- csso@5.0.5:
- dependencies:
- css-tree: 2.2.1
-
- debug@4.4.3:
- dependencies:
- ms: 2.1.3
-
- deepmerge@4.3.1: {}
-
- detect-libc@1.0.3:
- optional: true
-
- devalue@5.3.2: {}
-
- dom-serializer@2.0.0:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 5.0.3
- entities: 4.5.0
-
- domelementtype@2.3.0: {}
-
- domhandler@5.0.3:
- dependencies:
- domelementtype: 2.3.0
-
- domutils@3.2.2:
- dependencies:
- dom-serializer: 2.0.0
- domelementtype: 2.3.0
- domhandler: 5.0.3
-
- dotenv@16.6.1: {}
-
- entities@4.5.0: {}
-
- esbuild@0.21.5:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.21.5
- '@esbuild/android-arm': 0.21.5
- '@esbuild/android-arm64': 0.21.5
- '@esbuild/android-x64': 0.21.5
- '@esbuild/darwin-arm64': 0.21.5
- '@esbuild/darwin-x64': 0.21.5
- '@esbuild/freebsd-arm64': 0.21.5
- '@esbuild/freebsd-x64': 0.21.5
- '@esbuild/linux-arm': 0.21.5
- '@esbuild/linux-arm64': 0.21.5
- '@esbuild/linux-ia32': 0.21.5
- '@esbuild/linux-loong64': 0.21.5
- '@esbuild/linux-mips64el': 0.21.5
- '@esbuild/linux-ppc64': 0.21.5
- '@esbuild/linux-riscv64': 0.21.5
- '@esbuild/linux-s390x': 0.21.5
- '@esbuild/linux-x64': 0.21.5
- '@esbuild/netbsd-x64': 0.21.5
- '@esbuild/openbsd-x64': 0.21.5
- '@esbuild/sunos-x64': 0.21.5
- '@esbuild/win32-arm64': 0.21.5
- '@esbuild/win32-ia32': 0.21.5
- '@esbuild/win32-x64': 0.21.5
-
- esm-env@1.2.2: {}
-
- esrap@2.1.0:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
-
- estree-walker@2.0.2: {}
-
- fdir@6.5.0(picomatch@4.0.3):
- optionalDependencies:
- picomatch: 4.0.3
-
- fill-range@7.1.1:
- dependencies:
- to-regex-range: 5.0.1
- optional: true
-
- fsevents@2.3.3:
- optional: true
-
- immutable@5.1.3: {}
-
- is-extglob@2.1.1:
- optional: true
-
- is-glob@4.0.3:
- dependencies:
- is-extglob: 2.1.1
- optional: true
-
- is-number@7.0.0:
- optional: true
-
- is-reference@3.0.3:
- dependencies:
- '@types/estree': 1.0.8
-
- kleur@4.1.5: {}
-
- locate-character@3.0.0: {}
-
- magic-string@0.30.19:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
-
- mdn-data@2.0.28: {}
-
- mdn-data@2.0.30: {}
-
- micromatch@4.0.8:
- dependencies:
- braces: 3.0.3
- picomatch: 2.3.1
- optional: true
-
- mri@1.2.0: {}
-
- mrmime@2.0.1: {}
-
- ms@2.1.3: {}
-
- nanoid@3.3.11: {}
-
- node-addon-api@7.1.1:
- optional: true
-
- nth-check@2.1.1:
- dependencies:
- boolbase: 1.0.0
-
- picocolors@1.1.1: {}
-
- picomatch@2.3.1:
- optional: true
-
- picomatch@4.0.3: {}
-
- postcss@8.5.6:
- dependencies:
- nanoid: 3.3.11
- picocolors: 1.1.1
- source-map-js: 1.2.1
-
- readdirp@4.1.2: {}
-
- rollup@4.52.0:
- dependencies:
- '@types/estree': 1.0.8
- optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.52.0
- '@rollup/rollup-android-arm64': 4.52.0
- '@rollup/rollup-darwin-arm64': 4.52.0
- '@rollup/rollup-darwin-x64': 4.52.0
- '@rollup/rollup-freebsd-arm64': 4.52.0
- '@rollup/rollup-freebsd-x64': 4.52.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.52.0
- '@rollup/rollup-linux-arm-musleabihf': 4.52.0
- '@rollup/rollup-linux-arm64-gnu': 4.52.0
- '@rollup/rollup-linux-arm64-musl': 4.52.0
- '@rollup/rollup-linux-loong64-gnu': 4.52.0
- '@rollup/rollup-linux-ppc64-gnu': 4.52.0
- '@rollup/rollup-linux-riscv64-gnu': 4.52.0
- '@rollup/rollup-linux-riscv64-musl': 4.52.0
- '@rollup/rollup-linux-s390x-gnu': 4.52.0
- '@rollup/rollup-linux-x64-gnu': 4.52.0
- '@rollup/rollup-linux-x64-musl': 4.52.0
- '@rollup/rollup-openharmony-arm64': 4.52.0
- '@rollup/rollup-win32-arm64-msvc': 4.52.0
- '@rollup/rollup-win32-ia32-msvc': 4.52.0
- '@rollup/rollup-win32-x64-gnu': 4.52.0
- '@rollup/rollup-win32-x64-msvc': 4.52.0
- fsevents: 2.3.3
-
- sade@1.8.1:
- dependencies:
- mri: 1.2.0
-
- sass@1.93.0:
- dependencies:
- chokidar: 4.0.3
- immutable: 5.1.3
- source-map-js: 1.2.1
- optionalDependencies:
- '@parcel/watcher': 2.5.1
-
- set-cookie-parser@2.7.1: {}
-
- sirv@3.0.2:
- dependencies:
- '@polka/url': 1.0.0-next.29
- mrmime: 2.0.1
- totalist: 3.0.1
-
- source-map-js@1.2.1: {}
-
- svelte-check@4.3.1(picomatch@4.0.3)(svelte@5.39.4)(typescript@5.9.2):
- dependencies:
- '@jridgewell/trace-mapping': 0.3.31
- chokidar: 4.0.3
- fdir: 6.5.0(picomatch@4.0.3)
- picocolors: 1.1.1
- sade: 1.8.1
- svelte: 5.39.4
- typescript: 5.9.2
- transitivePeerDependencies:
- - picomatch
-
- svelte@5.39.4:
- dependencies:
- '@jridgewell/remapping': 2.3.5
- '@jridgewell/sourcemap-codec': 1.5.5
- '@sveltejs/acorn-typescript': 1.0.5(acorn@8.15.0)
- '@types/estree': 1.0.8
- acorn: 8.15.0
- aria-query: 5.3.2
- axobject-query: 4.1.0
- clsx: 2.1.1
- esm-env: 1.2.2
- esrap: 2.1.0
- is-reference: 3.0.3
- locate-character: 3.0.0
- magic-string: 0.30.19
- zimmerframe: 1.1.4
-
- svgo@3.3.2:
- dependencies:
- '@trysound/sax': 0.2.0
- commander: 7.2.0
- css-select: 5.2.2
- css-tree: 2.3.1
- css-what: 6.2.2
- csso: 5.0.5
- picocolors: 1.1.1
-
- to-regex-range@5.0.1:
- dependencies:
- is-number: 7.0.0
- optional: true
-
- totalist@3.0.1: {}
-
- tslib@2.8.1: {}
-
- typescript@5.9.2: {}
-
- vite@5.4.20(sass@1.93.0):
- dependencies:
- esbuild: 0.21.5
- postcss: 8.5.6
- rollup: 4.52.0
- optionalDependencies:
- fsevents: 2.3.3
- sass: 1.93.0
-
- vitefu@1.1.1(vite@5.4.20(sass@1.93.0)):
- optionalDependencies:
- vite: 5.4.20(sass@1.93.0)
-
- zimmerframe@1.1.4: {}
diff --git a/projects/index.html b/projects/index.html
new file mode 100644
index 0000000..3b82f73
--- /dev/null
+++ b/projects/index.html
@@ -0,0 +1,61 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="icon" href="/assets/pml68.png">
+ <link rel="stylesheet" href="/style.css">
+ <title>Projects</title>
+ </head>
+
+ <body>
+ <img src="/assets/wave1.svg" alt="Wave decoration" class="wave wave1">
+ <img src="/assets/wave2.svg" alt="Wave decoration" class="wave wave2">
+
+ <div class="container">
+ <div class="spacer">
+ <div class="home">
+ Take me back <a href="/"><b>home</b></a>
+ </div>
+ </div>
+ <div class="project-container">
+ <a href="https://sr.ht/~pml68/pml68.dev" target="_blank">
+ <div class="project">
+ <img src="/assets/pml68.png" alt="pml68.dev icon" class="project-icon">
+ <div class="content">
+ <h3>pml68.dev</h3>
+ <p>My personal website—the one you're currently viewing</p>
+ </div>
+ </div>
+ </a>
+ <a href="https://sr.ht/~pml68/iced-builder" target="_blank">
+ <div class="project">
+ <img src="https://iced.rs/logo.svg" alt="iced logo" class="project-icon">
+ <div class="content">
+ <h3>iced Builder</h3>
+ <p>UI builder for iced, built with iced. (WIP)</p>
+ </div>
+ </div>
+ </a>
+ <a href="https://github.com/foghorn-rs/foghorn" target="_blank">
+ <div class="project">
+ <img src="https://avatars.githubusercontent.com/u/209838582?s=200&v=4" alt="Foghorn icon" class="project-icon">
+ <div class="content">
+ <h3>Foghorn</h3>
+ <p>Signal Messenger client written in Rust and Iced</p>
+ </div>
+ </div>
+ </a>
+ <a href="https://sr.ht/~pml68/iced_dialog" target="_blank">
+ <div class="project">
+ <img src="https://iced.rs/logo.svg" alt="iced logo" class="project-icon">
+ <div class="content">
+ <h3>iced_dialog</h3>
+ <p>Custom dialog for iced</p>
+ </div>
+ </div>
+ </a>
+ </div>
+ </div>
+ </body>
+</html>
diff --git a/src/app.d.ts b/src/app.d.ts
deleted file mode 100644
index ede21d9..0000000
--- a/src/app.d.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-// See https://kit.svelte.dev/docs/types#app
-// for information about these interfaces
-import '@poppanator/sveltekit-svg/dist/svg'
-declare global {
- namespace App {
- // interface Error {}
- // interface Locals {}
- // interface PageData {}
- // interface PageState {}
- // interface Platform {}
- }
-}
-
-export {};
diff --git a/src/app.html b/src/app.html
deleted file mode 100644
index db4d6c5..0000000
--- a/src/app.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<!doctype html>
-<html lang="en">
- <head>
- <meta charset="utf-8" />
- <link rel="icon" href="%sveltekit.assets%/pml68.png" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- %sveltekit.head%
- </head>
- <body data-sveltekit-preload-data="hover">
- <div style="display: contents">%sveltekit.body%</div>
- </body>
-</html>
diff --git a/src/app.scss b/src/app.scss
deleted file mode 100644
index fe57f71..0000000
--- a/src/app.scss
+++ /dev/null
@@ -1,79 +0,0 @@
-$font-min: 16px;
-$font-desired: calc((2.6vh + 8vw) / 2);
-$font-max: 32px;
-
-$icon-min: 50px;
-$icon-desired: calc((3.25vh + 10vw) / 2);
-$icon-max: 96px;
-
-*{
- box-sizing: border-box;
- margin: 0;
- padding: 0;
-}
-
-body {
- background-color: #1e1e2e;
- color: #ccc;
- font-family: 'Space Mono', monospace;
- width: 100%;
- font-size: clamp($font-min, $font-desired, $font-max);
- position: fixed;
- height: 100dvh;
-}
-
-.socials {
- margin-top: 10px;
-}
-
-.social-icon {
- width: clamp($icon-min, $icon-desired, $icon-max);
-}
-
-a {
- color: #ccc;
- text-decoration: none;
- transition: color .25s ease-in-out;
-
- &:hover {
- color: #a6fbb2;
- transition: color .25s ease-in-out;
- }
-}
-
-a.icon {
- margin-right: 2vw;
-}
-
-.container {
- display: flex;
- height: 100dvh;
- align-items: center;
- justify-content: center;
- overflow: hidden;
- flex-direction: column;
- width: 100%;
-}
-
-.main {
- text-align: left;
- line-height: 1.2;
- margin: 20px;
-}
-
-.wave {
- position: absolute;
- top: 0;
- max-width: 140vw;
- max-height: 140vh;
-}
-
-.wave1 {
- left: 0;
- transform: rotate(-45deg) translate(-30%, -80%);
-}
-
-.wave2 {
- right: 0;
- transform: rotate(45deg) translate(50%, -90%);
-}
diff --git a/src/lib/assets/css/projects.scss b/src/lib/assets/css/projects.scss
deleted file mode 100644
index 03376a1..0000000
--- a/src/lib/assets/css/projects.scss
+++ /dev/null
@@ -1,64 +0,0 @@
-$font-min: 16px;
-$font-desired: 1vw;
-$font-max: 32px;
-
-.project-container {
- padding: 0 10vw;
- display: grid;
- grid-template-columns: repeat(2, minmax(40vw, 1fr));
- height: 80dvh;
- align-items: center;
- justify-items: center;
- overflow: auto;
- align-content: center;
- -ms-overflow-style: none;
- scrollbar-width: none;
-}
-
-.project-container::-webkit-scrollbar {
- display: none;
-}
-
-.project {
- margin: 15px 15px;
- font-size: clamp($font-min, $font-desired, $font-max);
- padding: 25px 10px;
- display: flex;
- align-items: center;
- background: #1e1e2e;
- transition: transform .3s ease-in-out;
- border-radius: 2vh;
- box-shadow: -12px -12px 28px #27273b73, 12px 12px 20px #12121c73;
-}
-
-.spacer {
- height: 20dvh;
- display: flex;
- flex-direction: column;
- justify-content: end;
- z-index: 30;
-}
-
-.home {
- font-size: clamp($font-min, 2.5vw, 48px);
- margin-bottom: 15px;
-}
-
-.project-icon {
- width: 4rem;
- height: 4rem;
- margin-right: 10px;
-}
-
-@media (max-width: 839px) {
- .project-container {
- grid-template-columns: minmax(90vw, 1fr);
- padding: 0 5vw;
- align-content: normal;
- }
-}
-
-a:hover .project {
- transform: scale(103%);
- transition: transform .3s ease-in-out;
-}
diff --git a/src/lib/index.ts b/src/lib/index.ts
deleted file mode 100644
index 856f2b6..0000000
--- a/src/lib/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-// place files you want to import through the `$lib` alias in this folder.
diff --git a/src/lib/projects.json b/src/lib/projects.json
deleted file mode 100644
index 6296dde..0000000
--- a/src/lib/projects.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "projects": [
- {
- "icon": "https://pml68.dev/pml68.png",
- "link": "https://sr.ht/~pml68/pml68.dev",
- "title": "pml68",
- "description": "My personal website — the one you're currently viewing"
- },
- {
- "icon": "https://iced.rs/logo.svg",
- "link": "https://sr.ht/~pml68/iced-builder",
- "title": "iced Builder",
- "description": "UI builder for iced, built with iced. (WIP)"
- },
- {
- "icon": "https://avatars.githubusercontent.com/u/209838582?s=200&v=4",
- "link": "https://github.com/foghorn-rs/foghorn",
- "title": "Foghorn",
- "description": "Signal Messenger client written in Rust and Iced"
- },
- {
- "icon": "https://iced.rs/logo.svg",
- "link": "https://sr.ht/~pml68/iced_dialog",
- "title": "iced_dialog",
- "description": "Custom dialog for iced"
- }
- ]
-}
diff --git a/src/lib/socials.json b/src/lib/socials.json
deleted file mode 100644
index c6a4a55..0000000
--- a/src/lib/socials.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "socials": [
- {
- "name": "github",
- "link": "https://github.com/pml68"
- },
- {
- "name": "sourcehut",
- "link": "https://sr.ht/~pml68"
- },
- {
- "name": "dev",
- "link": "https://dev.to/pml68"
- },
- {
- "name": "steam",
- "link": "https://steamcommunity.com/id/nigmaballs"
- },
- {
- "name": "telegram",
- "link": "https://t.me/pml68_1"
- },
- {
- "name": "email",
- "link": "mailto:contact@pml68.dev"
- }
- ]
-}
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
deleted file mode 100644
index 856ee27..0000000
--- a/src/routes/+layout.svelte
+++ /dev/null
@@ -1,18 +0,0 @@
-<script lang="ts">
- import "../app.scss";
-
- import WaveLeft from "$lib/assets/wave1.svg?url";
- import WaveRight from "$lib/assets/wave2.svg?url";
- interface Props {
- children?: import("svelte").Snippet;
- }
-
- let { children }: Props = $props();
-</script>
-
-<img src={WaveLeft} alt="" class="wave wave1" />
-<img src={WaveRight} alt="" class="wave wave2" />
-
-<div class="container">
- {@render children?.()}
-</div>
diff --git a/src/routes/+layout.ts b/src/routes/+layout.ts
deleted file mode 100644
index c5dbeb7..0000000
--- a/src/routes/+layout.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-export const prerender = true
-export const trailingSlash = 'always'
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
deleted file mode 100644
index d9ec52f..0000000
--- a/src/routes/+page.svelte
+++ /dev/null
@@ -1,34 +0,0 @@
-<script lang="ts">
- import '../app.scss'
- import { base } from '$app/paths'
- import { socials } from '$lib/socials.json'
-
- type Social = {
- name: string,
- link: string
- }
-
- const socialsList: Social[] = socials
-</script>
-
-<svelte:head>
- <title>pml68</title>
-</svelte:head>
-
-<div class="main">
- <h1>pml68</h1>
- <p>Just your average IT student</p>
- <div class="socials">
- {#each socialsList as {name, link}}
- <a href={link} target="_blank" class="icon" aria-label={name}>
- <svg viewBox="0 0 512 512" class="social-icon">
- <use href={`/${name}.svg#${name}`} />
- </svg>
- </a>
- {/each}
- </div>
- <br>
- <div class="projects">
- Check out my projects <a href={base + '/projects'}><b>here</b></a>
- </div>
-</div>
diff --git a/src/routes/projects/+page.svelte b/src/routes/projects/+page.svelte
deleted file mode 100644
index d19af6c..0000000
--- a/src/routes/projects/+page.svelte
+++ /dev/null
@@ -1,38 +0,0 @@
-<script lang="ts">
- import '$lib/assets/css/projects.scss'
-
- import { base } from "$app/paths"
- import { projects } from '$lib/projects.json'
-
- type Project = {
- icon: string,
- link: string,
- title: string,
- description: string
- }
-
- const projectsList: Project[] = projects
-</script>
-
-<svelte:head>
- <title>Projects</title>
-</svelte:head>
-
-<div class="spacer">
- <div class="home">
- Take me back <a href={base + '/'}><b>home</b></a>
- </div>
-</div>
-<div class="project-container">
- {#each projectsList as {icon, link, title, description}}
- <a href={link} target="_blank">
- <div class="project">
- <img src={icon} alt={title + ' icon'} class="project-icon">
- <div class="content">
- <h3>{title}</h3>
- <p>{description}</p>
- </div>
- </div>
- </a>
- {/each}
-</div>
diff --git a/static/steam.svg b/static/steam.svg
deleted file mode 100644
index 6b6b146..0000000
--- a/static/steam.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" id="steam"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="currentColor" d="M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.8 52.8 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3 .1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z"/></svg>
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..592d98e
--- /dev/null
+++ b/style.css
@@ -0,0 +1,147 @@
+:root {
+ --font-min: 16px;
+ --font-desired: calc((2.6vh + 8vw) / 2);
+ --font-max: 32px;
+ --icon-min: 50px;
+ --icon-desired: calc((3.25vh + 10vw) / 2);
+ --icon-max: 96px;
+}
+
+* {
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+}
+
+body {
+ background-color: #1e1e2e;
+ color: #ccc;
+ font-family: 'Space Mono', monospace;
+ width: 100%;
+ font-size: clamp(var(--font-min), var(--font-desired), var(--font-max));
+ position: fixed;
+ height: 100dvh;
+}
+
+/* General */
+
+a {
+ color: #ccc;
+ text-decoration: none;
+ transition: color .25s ease-in-out;
+
+ &:hover {
+ color: #a6fbb2;
+ transition: color .25s ease-in-out;
+ }
+}
+
+a.icon {
+ margin-right: 2vw;
+}
+
+.wave {
+ position: absolute;
+ top: 0;
+ max-width: 140vw;
+ max-height: 140vh;
+}
+
+.wave1 {
+ left: 0;
+ transform: rotate(-45deg) translate(-30%, -80%);
+}
+
+.wave2 {
+ right: 0;
+ transform: rotate(45deg) translate(50%, -90%);
+}
+
+/* Homepage */
+
+.socials {
+ margin-top: 10px;
+}
+
+.social-icon {
+ width: clamp(var(--icon-min), var(--icon-desired), var(--icon-max));
+}
+
+.container {
+ display: flex;
+ height: 100dvh;
+ align-items: center;
+ justify-content: center;
+ overflow: hidden;
+ flex-direction: column;
+ width: 100%;
+}
+
+.main {
+ text-align: left;
+ line-height: 1.2;
+ margin: 20px;
+}
+
+/* Projects page */
+
+.project-container {
+ padding: 0 10vw;
+ display: grid;
+ grid-template-columns: repeat(2, minmax(40vw, 1fr));
+ height: 80dvh;
+ align-items: center;
+ justify-items: center;
+ overflow: auto;
+ align-content: center;
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+}
+
+.project-container::-webkit-scrollbar {
+ display: none;
+}
+
+.project {
+ margin: 15px 15px;
+ font-size: clamp(var(--font-min), 1vw, var(--font-max));
+ padding: 25px 10px;
+ display: flex;
+ align-items: center;
+ background: #1e1e2e;
+ transition: transform .3s ease-in-out;
+ border-radius: 2vh;
+ box-shadow: -12px -12px 28px #27273b73, 12px 12px 20px #12121c73;
+}
+
+.spacer {
+ height: 20dvh;
+ display: flex;
+ flex-direction: column;
+ justify-content: end;
+ z-index: 30;
+}
+
+.home {
+ font-size: clamp(var(--font-min), 2.5vw, 48px);
+ margin-bottom: 15px;
+}
+
+.project-icon {
+ width: 4rem;
+ height: 4rem;
+ margin-right: 10px;
+}
+
+@media (max-width: 839px) {
+ .project-container {
+ grid-template-columns: minmax(90vw, 1fr);
+ padding: 0 5vw;
+ align-content: normal;
+ }
+}
+
+a:hover .project {
+ transform: scale(103%);
+ transition: transform .3s ease-in-out;
+}
diff --git a/svelte.config.js b/svelte.config.js
deleted file mode 100644
index bc825ab..0000000
--- a/svelte.config.js
+++ /dev/null
@@ -1,23 +0,0 @@
-import adapter from '@sveltejs/adapter-static'
-import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
-import 'dotenv/config'
-const dev = process.argv.includes('dev')
-
-/** @type {import('@sveltejs/kit').Config} */
-const config = {
- preprocess: vitePreprocess(),
- kit: {
- adapter: adapter({
- pages: 'build',
- assets: 'build',
- fallback: undefined,
- precompress: false,
- strict: true
- }),
- paths: {
- base: dev ? '' : process.env.BASE_PATH
- }
- }
-};
-
-export default config
diff --git a/tsconfig.json b/tsconfig.json
deleted file mode 100644
index 82081ab..0000000
--- a/tsconfig.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "extends": "./.svelte-kit/tsconfig.json",
- "compilerOptions": {
- "allowJs": true,
- "checkJs": true,
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "resolveJsonModule": true,
- "skipLibCheck": true,
- "sourceMap": true,
- "strict": true,
- "moduleResolution": "bundler"
- }
- // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
- //
- // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
- // from the referenced tsconfig.json - TypeScript does not merge them in
-}
diff --git a/vite.config.ts b/vite.config.ts
deleted file mode 100644
index 8c10f71..0000000
--- a/vite.config.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import { sveltekit } from '@sveltejs/kit/vite';
-import { defineConfig } from 'vite';
-import svg from '@poppanator/sveltekit-svg'
-
-export default defineConfig({
- plugins: [
- sveltekit(),
- svg()
- ],
- css: {
- preprocessorOptions: {
- scss: {
- api: 'modern',
- prependData: `@use 'src/app.scss' as *;`,
- }
- }
- }
-});