From 1eef073e0eb4da2e667ed27375bac5428bd272ce Mon Sep 17 00:00:00 2001
From: Kryscau <73716731+kryscau@users.noreply.github.com>
Date: Mon, 9 Jun 2025 03:20:05 +0200
Subject: [PATCH] Website
---
.env.example | 2 +
.github/workflows/deploy.yml | 55 +
package-lock.json | 831 +-
package.json | 6 +-
src/app.css | 108 -
src/app.html | 35 +-
src/lib/components/MetaSEO.svelte | 24 +
src/lib/components/Navigation.svelte | 58 +
src/lib/components/ProfileSection.svelte | 116 +
src/lib/components/RepositorySection.svelte | 37 +
src/lib/components/ui/LangBadge.svelte | 36 +
src/lib/components/ui/RepoCard.svelte | 191 +
src/lib/css/main.css | 105 +
src/lib/css/tailwind.css | 3 +
src/lib/data/colors.json | 2742 ++++
src/lib/images/github.svg | 1 -
src/lib/images/svelte-logo.svg | 1 -
src/lib/images/svelte-welcome.png | Bin 360807 -> 0 bytes
src/lib/images/svelte-welcome.webp | Bin 115470 -> 0 bytes
src/routes/+error.svelte | 50 +
src/routes/+layout.svelte | 80 +-
src/routes/+page.js | 3 -
src/routes/+page.svelte | 140 +-
src/routes/Counter.svelte | 103 -
src/routes/Header.svelte | 129 -
src/routes/about/+page.js | 9 -
src/routes/about/+page.svelte | 26 -
.../repository/[username]/[repo]/+page.svelte | 275 +
src/routes/sverdle/+page.server.js | 70 -
src/routes/sverdle/+page.svelte | 418 -
src/routes/sverdle/game.js | 72 -
src/routes/sverdle/how-to-play/+page.js | 9 -
src/routes/sverdle/how-to-play/+page.svelte | 95 -
src/routes/sverdle/words.server.js | 12980 ----------------
static/assets/css/noscript.css | 17 +
static/assets/favicon/apple-touch-icon.png | Bin 0 -> 11770 bytes
static/assets/favicon/favicon-96x96.png | Bin 0 -> 4738 bytes
static/assets/favicon/favicon.ico | Bin 0 -> 15086 bytes
static/assets/favicon/favicon.svg | 3 +
static/assets/favicon/site.webmanifest | 21 +
.../favicon/web-app-manifest-192x192.png | Bin 0 -> 5741 bytes
.../favicon/web-app-manifest-512x512.png | Bin 0 -> 17732 bytes
static/assets/img/placeholder.jpg | Bin 0 -> 56295 bytes
static/favicon.ico | Bin 0 -> 15086 bytes
static/favicon.png | Bin 1571 -> 0 bytes
svelte.config.js | 19 +-
tailwind.config.js | 32 +
vite.config.js | 21 +-
48 files changed, 4695 insertions(+), 14228 deletions(-)
create mode 100644 .env.example
create mode 100644 .github/workflows/deploy.yml
delete mode 100644 src/app.css
create mode 100644 src/lib/components/MetaSEO.svelte
create mode 100644 src/lib/components/Navigation.svelte
create mode 100644 src/lib/components/ProfileSection.svelte
create mode 100644 src/lib/components/RepositorySection.svelte
create mode 100644 src/lib/components/ui/LangBadge.svelte
create mode 100644 src/lib/components/ui/RepoCard.svelte
create mode 100644 src/lib/css/main.css
create mode 100644 src/lib/css/tailwind.css
create mode 100644 src/lib/data/colors.json
delete mode 100644 src/lib/images/github.svg
delete mode 100644 src/lib/images/svelte-logo.svg
delete mode 100644 src/lib/images/svelte-welcome.png
delete mode 100644 src/lib/images/svelte-welcome.webp
create mode 100644 src/routes/+error.svelte
delete mode 100644 src/routes/+page.js
delete mode 100644 src/routes/Counter.svelte
delete mode 100644 src/routes/Header.svelte
delete mode 100644 src/routes/about/+page.js
delete mode 100644 src/routes/about/+page.svelte
create mode 100644 src/routes/repository/[username]/[repo]/+page.svelte
delete mode 100644 src/routes/sverdle/+page.server.js
delete mode 100644 src/routes/sverdle/+page.svelte
delete mode 100644 src/routes/sverdle/game.js
delete mode 100644 src/routes/sverdle/how-to-play/+page.js
delete mode 100644 src/routes/sverdle/how-to-play/+page.svelte
delete mode 100644 src/routes/sverdle/words.server.js
create mode 100644 static/assets/css/noscript.css
create mode 100644 static/assets/favicon/apple-touch-icon.png
create mode 100644 static/assets/favicon/favicon-96x96.png
create mode 100644 static/assets/favicon/favicon.ico
create mode 100644 static/assets/favicon/favicon.svg
create mode 100644 static/assets/favicon/site.webmanifest
create mode 100644 static/assets/favicon/web-app-manifest-192x192.png
create mode 100644 static/assets/favicon/web-app-manifest-512x512.png
create mode 100644 static/assets/img/placeholder.jpg
create mode 100644 static/favicon.ico
delete mode 100644 static/favicon.png
create mode 100644 tailwind.config.js
diff --git a/.env.example b/.env.example
new file mode 100644
index 0000000..a0b9785
--- /dev/null
+++ b/.env.example
@@ -0,0 +1,2 @@
+PUBLIC_GITHUB_USERNAME=your_github_username
+PUBLIC_GITHUB_API_URL="https://api.github.com"
\ No newline at end of file
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
new file mode 100644
index 0000000..fc33b10
--- /dev/null
+++ b/.github/workflows/deploy.yml
@@ -0,0 +1,55 @@
+name: Deploy to GitHub Pages
+
+on:
+ push:
+ branches: 'main'
+
+jobs:
+ build_site:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ # If you're using pnpm, add this step then change the commands and cache key below to use `pnpm`
+ # - name: Install pnpm
+ # uses: pnpm/action-setup@v3
+ # with:
+ # version: 8
+
+ - name: Install Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: 20
+ cache: npm
+
+ - name: Install dependencies
+ run: npm install
+
+ - name: build
+ env:
+ BASE_PATH: '/${{ github.event.repository.name }}'
+ run: |
+ npm run build
+
+ - name: Upload Artifacts
+ uses: actions/upload-pages-artifact@v3
+ with:
+ path: 'build/'
+
+ deploy:
+ needs: build_site
+ runs-on: ubuntu-latest
+
+ permissions:
+ pages: write
+ id-token: write
+
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+
+ steps:
+ - name: Deploy
+ id: deployment
+ uses: actions/deploy-pages@v4
diff --git a/package-lock.json b/package-lock.json
index cc92819..05a5e62 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -7,12 +7,16 @@
"": {
"name": "gitrepository",
"version": "0.0.1",
+ "dependencies": {
+ "date-fns": "^4.1.0",
+ "vite-plugin-html": "^3.2.2"
+ },
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@fontsource/fira-mono": "^5.0.0",
"@neoconfetti/svelte": "^2.0.0",
- "@sveltejs/adapter-auto": "^6.0.0",
+ "@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/forms": "^0.5.9",
@@ -53,7 +57,6 @@
"cpu": [
"ppc64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -70,7 +73,6 @@
"cpu": [
"arm"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -87,7 +89,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -104,7 +105,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -121,7 +121,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -138,7 +137,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -155,7 +153,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -172,7 +169,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -189,7 +185,6 @@
"cpu": [
"arm"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -206,7 +201,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -223,7 +217,6 @@
"cpu": [
"ia32"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -240,7 +233,6 @@
"cpu": [
"loong64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -257,7 +249,6 @@
"cpu": [
"mips64el"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -274,7 +265,6 @@
"cpu": [
"ppc64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -291,7 +281,6 @@
"cpu": [
"riscv64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -308,7 +297,6 @@
"cpu": [
"s390x"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -325,7 +313,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -342,7 +329,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -359,7 +345,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -376,7 +361,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -393,7 +377,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -410,7 +393,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -427,7 +409,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -444,7 +425,6 @@
"cpu": [
"ia32"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -461,7 +441,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -736,7 +715,6 @@
"version": "0.3.8",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
"integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
- "dev": true,
"license": "MIT",
"dependencies": {
"@jridgewell/set-array": "^1.2.1",
@@ -751,7 +729,6 @@
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=6.0.0"
@@ -761,24 +738,31 @@
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=6.0.0"
}
},
+ "node_modules/@jridgewell/source-map": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
+ "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25"
+ }
+ },
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
- "dev": true,
"license": "MIT"
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.25",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
- "dev": true,
"license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
@@ -795,6 +779,41 @@
"svelte": "^3.0.0 || ^4.0.0 || ^5.0.0"
}
},
+ "node_modules/@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
"node_modules/@polka/url": {
"version": "1.0.0-next.29",
"resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz",
@@ -802,6 +821,31 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/@rollup/pluginutils": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz",
+ "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==",
+ "license": "MIT",
+ "dependencies": {
+ "estree-walker": "^2.0.1",
+ "picomatch": "^2.2.2"
+ },
+ "engines": {
+ "node": ">= 8.0.0"
+ }
+ },
+ "node_modules/@rollup/pluginutils/node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
"node_modules/@rollup/rollup-android-arm-eabi": {
"version": "4.42.0",
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.42.0.tgz",
@@ -809,7 +853,6 @@
"cpu": [
"arm"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -823,7 +866,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -837,7 +879,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -851,7 +892,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -865,7 +905,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -879,7 +918,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -893,7 +931,6 @@
"cpu": [
"arm"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -907,7 +944,6 @@
"cpu": [
"arm"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -921,7 +957,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -935,7 +970,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -949,7 +983,6 @@
"cpu": [
"loong64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -963,7 +996,6 @@
"cpu": [
"ppc64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -977,7 +1009,6 @@
"cpu": [
"riscv64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -991,7 +1022,6 @@
"cpu": [
"riscv64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -1005,7 +1035,6 @@
"cpu": [
"s390x"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -1019,7 +1048,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -1033,7 +1061,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -1047,7 +1074,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -1061,7 +1087,6 @@
"cpu": [
"ia32"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -1075,7 +1100,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -1092,10 +1116,10 @@
"acorn": "^8.9.0"
}
},
- "node_modules/@sveltejs/adapter-auto": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-6.0.1.tgz",
- "integrity": "sha512-mcWud3pYGPWM2Pphdj8G9Qiq24nZ8L4LB7coCUckUEy5Y7wOWGJ/enaZ4AtJTcSm5dNK1rIkBRoqt+ae4zlxcQ==",
+ "node_modules/@sveltejs/adapter-static": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/@sveltejs/adapter-static/-/adapter-static-3.0.8.tgz",
+ "integrity": "sha512-YaDrquRpZwfcXbnlDsSrBQNCChVOT9MGuSg+dMAyfsAa1SmiAhrA5jUYUiIMC59G92kIbY/AaQOWcBdq+lh+zg==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -1505,7 +1529,6 @@
"version": "8.15.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
- "dev": true,
"license": "MIT",
"bin": {
"acorn": "bin/acorn"
@@ -1545,7 +1568,6 @@
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
"license": "MIT",
"dependencies": {
"color-convert": "^2.0.1"
@@ -1574,6 +1596,12 @@
"node": ">= 0.4"
}
},
+ "node_modules/async": {
+ "version": "3.2.6",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
+ "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
+ "license": "MIT"
+ },
"node_modules/axobject-query": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
@@ -1588,20 +1616,42 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "dev": true,
"license": "MIT"
},
+ "node_modules/boolbase": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
+ "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
+ "license": "ISC"
+ },
"node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
"license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
+ "node_modules/braces": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "license": "MIT",
+ "dependencies": {
+ "fill-range": "^7.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/buffer-from": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+ "license": "MIT"
+ },
"node_modules/callsites": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
@@ -1612,11 +1662,20 @@
"node": ">=6"
}
},
+ "node_modules/camel-case": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz",
+ "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==",
+ "license": "MIT",
+ "dependencies": {
+ "pascal-case": "^3.1.2",
+ "tslib": "^2.0.3"
+ }
+ },
"node_modules/chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
"license": "MIT",
"dependencies": {
"ansi-styles": "^4.1.0",
@@ -1655,6 +1714,18 @@
"node": ">=18"
}
},
+ "node_modules/clean-css": {
+ "version": "5.3.3",
+ "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz",
+ "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==",
+ "license": "MIT",
+ "dependencies": {
+ "source-map": "~0.6.0"
+ },
+ "engines": {
+ "node": ">= 10.0"
+ }
+ },
"node_modules/clsx": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
@@ -1669,7 +1740,6 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
"license": "MIT",
"dependencies": {
"color-name": "~1.1.4"
@@ -1682,14 +1752,42 @@
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true,
"license": "MIT"
},
+ "node_modules/colorette": {
+ "version": "2.0.20",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
+ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
+ "license": "MIT"
+ },
+ "node_modules/commander": {
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
+ "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 12"
+ }
+ },
"node_modules/concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
- "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/connect-history-api-fallback": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz",
+ "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8"
+ }
+ },
+ "node_modules/consola": {
+ "version": "2.15.3",
+ "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz",
+ "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==",
"license": "MIT"
},
"node_modules/cookie": {
@@ -1717,6 +1815,34 @@
"node": ">= 8"
}
},
+ "node_modules/css-select": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz",
+ "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "boolbase": "^1.0.0",
+ "css-what": "^6.0.1",
+ "domhandler": "^4.3.1",
+ "domutils": "^2.8.0",
+ "nth-check": "^2.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
+ }
+ },
+ "node_modules/css-what": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
+ "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">= 6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
+ }
+ },
"node_modules/cssesc": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
@@ -1730,6 +1856,16 @@
"node": ">=4"
}
},
+ "node_modules/date-fns": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.1.0.tgz",
+ "integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/kossnocorp"
+ }
+ },
"node_modules/debug": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
@@ -1769,7 +1905,7 @@
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz",
"integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
- "dev": true,
+ "devOptional": true,
"license": "Apache-2.0",
"engines": {
"node": ">=8"
@@ -1782,6 +1918,107 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/dom-serializer": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
+ "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
+ "license": "MIT",
+ "dependencies": {
+ "domelementtype": "^2.0.1",
+ "domhandler": "^4.2.0",
+ "entities": "^2.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+ }
+ },
+ "node_modules/domelementtype": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
+ "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/domhandler": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
+ "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "domelementtype": "^2.2.0"
+ },
+ "engines": {
+ "node": ">= 4"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
+ }
+ },
+ "node_modules/domutils": {
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
+ "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "dom-serializer": "^1.0.1",
+ "domelementtype": "^2.2.0",
+ "domhandler": "^4.2.0"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domutils?sponsor=1"
+ }
+ },
+ "node_modules/dot-case": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz",
+ "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==",
+ "license": "MIT",
+ "dependencies": {
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/dotenv": {
+ "version": "16.5.0",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.5.0.tgz",
+ "integrity": "sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://dotenvx.com"
+ }
+ },
+ "node_modules/dotenv-expand": {
+ "version": "8.0.3",
+ "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-8.0.3.tgz",
+ "integrity": "sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/ejs": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz",
+ "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "jake": "^10.8.5"
+ },
+ "bin": {
+ "ejs": "bin/cli.js"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/enhanced-resolve": {
"version": "5.18.1",
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
@@ -1796,11 +2033,19 @@
"node": ">=10.13.0"
}
},
+ "node_modules/entities": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
+ "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
+ "license": "BSD-2-Clause",
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
"node_modules/esbuild": {
"version": "0.25.5",
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.5.tgz",
"integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==",
- "dev": true,
"hasInstallScript": true,
"license": "MIT",
"bin": {
@@ -2062,6 +2307,12 @@
"node": ">=4.0"
}
},
+ "node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "license": "MIT"
+ },
"node_modules/esutils": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
@@ -2079,6 +2330,34 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/fast-glob": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
+ "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.8"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/fast-glob/node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "license": "ISC",
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
"node_modules/fast-json-stable-stringify": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
@@ -2093,11 +2372,19 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/fastq": {
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
+ "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
+ "license": "ISC",
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
+ },
"node_modules/fdir": {
"version": "6.4.5",
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.5.tgz",
"integrity": "sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==",
- "dev": true,
"license": "MIT",
"peerDependencies": {
"picomatch": "^3 || ^4"
@@ -2121,6 +2408,48 @@
"node": ">=16.0.0"
}
},
+ "node_modules/filelist": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz",
+ "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "minimatch": "^5.0.1"
+ }
+ },
+ "node_modules/filelist/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/filelist/node_modules/minimatch": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
+ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "license": "MIT",
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/find-up": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
@@ -2159,11 +2488,24 @@
"dev": true,
"license": "ISC"
},
+ "node_modules/fs-extra": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/fsevents": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "dev": true,
"hasInstallScript": true,
"license": "MIT",
"optional": true,
@@ -2204,19 +2546,47 @@
"version": "4.2.11",
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
- "dev": true,
"license": "ISC"
},
"node_modules/has-flag": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
}
},
+ "node_modules/he": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
+ "license": "MIT",
+ "bin": {
+ "he": "bin/he"
+ }
+ },
+ "node_modules/html-minifier-terser": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
+ "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==",
+ "license": "MIT",
+ "dependencies": {
+ "camel-case": "^4.1.2",
+ "clean-css": "^5.2.2",
+ "commander": "^8.3.0",
+ "he": "^1.2.0",
+ "param-case": "^3.0.4",
+ "relateurl": "^0.2.7",
+ "terser": "^5.10.0"
+ },
+ "bin": {
+ "html-minifier-terser": "cli.js"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/ignore": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
@@ -2258,7 +2628,6 @@
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -2268,7 +2637,6 @@
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
- "dev": true,
"license": "MIT",
"dependencies": {
"is-extglob": "^2.1.1"
@@ -2277,6 +2645,15 @@
"node": ">=0.10.0"
}
},
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
"node_modules/is-reference": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz",
@@ -2294,11 +2671,29 @@
"dev": true,
"license": "ISC"
},
+ "node_modules/jake": {
+ "version": "10.9.2",
+ "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz",
+ "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "async": "^3.2.3",
+ "chalk": "^4.0.2",
+ "filelist": "^1.0.4",
+ "minimatch": "^3.1.2"
+ },
+ "bin": {
+ "jake": "bin/cli.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/jiti": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz",
"integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"bin": {
"jiti": "lib/jiti-cli.mjs"
@@ -2338,6 +2733,18 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
"node_modules/keyv": {
"version": "4.5.4",
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
@@ -2383,7 +2790,7 @@
"version": "1.30.1",
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz",
"integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==",
- "dev": true,
+ "devOptional": true,
"license": "MPL-2.0",
"dependencies": {
"detect-libc": "^2.0.3"
@@ -2415,7 +2822,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2436,7 +2842,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2457,7 +2862,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2478,7 +2882,6 @@
"cpu": [
"arm"
],
- "dev": true,
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2499,7 +2902,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2520,7 +2922,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2541,7 +2942,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2562,7 +2962,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2583,7 +2982,6 @@
"cpu": [
"arm64"
],
- "dev": true,
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2604,7 +3002,6 @@
"cpu": [
"x64"
],
- "dev": true,
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2672,6 +3069,15 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/lower-case": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz",
+ "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.0.3"
+ }
+ },
"node_modules/magic-string": {
"version": "0.30.17",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
@@ -2682,6 +3088,40 @@
"@jridgewell/sourcemap-codec": "^1.5.0"
}
},
+ "node_modules/merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/micromatch": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
+ "license": "MIT",
+ "dependencies": {
+ "braces": "^3.0.3",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "node_modules/micromatch/node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
"node_modules/mini-svg-data-uri": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz",
@@ -2696,7 +3136,6 @@
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
"license": "ISC",
"dependencies": {
"brace-expansion": "^1.1.7"
@@ -2775,7 +3214,6 @@
"version": "3.3.11",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
- "dev": true,
"funding": [
{
"type": "github",
@@ -2797,6 +3235,38 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/no-case": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz",
+ "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==",
+ "license": "MIT",
+ "dependencies": {
+ "lower-case": "^2.0.2",
+ "tslib": "^2.0.3"
+ }
+ },
+ "node_modules/node-html-parser": {
+ "version": "5.4.2",
+ "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.4.2.tgz",
+ "integrity": "sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==",
+ "license": "MIT",
+ "dependencies": {
+ "css-select": "^4.2.1",
+ "he": "1.2.0"
+ }
+ },
+ "node_modules/nth-check": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
+ "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "boolbase": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/nth-check?sponsor=1"
+ }
+ },
"node_modules/optionator": {
"version": "0.9.4",
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
@@ -2847,6 +3317,16 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/param-case": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz",
+ "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==",
+ "license": "MIT",
+ "dependencies": {
+ "dot-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
+ },
"node_modules/parent-module": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
@@ -2860,6 +3340,16 @@
"node": ">=6"
}
},
+ "node_modules/pascal-case": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz",
+ "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==",
+ "license": "MIT",
+ "dependencies": {
+ "no-case": "^3.0.4",
+ "tslib": "^2.0.3"
+ }
+ },
"node_modules/path-exists": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
@@ -2880,18 +3370,22 @@
"node": ">=8"
}
},
+ "node_modules/pathe": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-0.2.0.tgz",
+ "integrity": "sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==",
+ "license": "MIT"
+ },
"node_modules/picocolors": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
- "dev": true,
"license": "ISC"
},
"node_modules/picomatch": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
"integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=12"
@@ -2904,7 +3398,6 @@
"version": "8.5.4",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.4.tgz",
"integrity": "sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w==",
- "dev": true,
"funding": [
{
"type": "opencollective",
@@ -3163,6 +3656,26 @@
"node": ">=6"
}
},
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
"node_modules/readdirp": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
@@ -3177,6 +3690,15 @@
"url": "https://paulmillr.com/funding/"
}
},
+ "node_modules/relateurl": {
+ "version": "0.2.7",
+ "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
+ "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
"node_modules/resolve-from": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
@@ -3187,11 +3709,20 @@
"node": ">=4"
}
},
+ "node_modules/reusify": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
+ "license": "MIT",
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/rollup": {
"version": "4.42.0",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.42.0.tgz",
"integrity": "sha512-LW+Vse3BJPyGJGAJt1j8pWDKPd73QM8cRXYK1IxOBgL2AGLu7Xd2YOW0M2sLUBCkF5MshXXtMApyEAEzMVMsnw==",
- "dev": true,
"license": "MIT",
"dependencies": {
"@types/estree": "1.0.7"
@@ -3231,9 +3762,31 @@
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz",
"integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==",
- "dev": true,
"license": "MIT"
},
+ "node_modules/run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
"node_modules/sade": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
@@ -3305,16 +3858,34 @@
"node": ">=18"
}
},
+ "node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/source-map-js": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
- "dev": true,
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
}
},
+ "node_modules/source-map-support": {
+ "version": "0.5.21",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+ "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
+ "license": "MIT",
+ "dependencies": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
"node_modules/strip-json-comments": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
@@ -3332,7 +3903,6 @@
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
"license": "MIT",
"dependencies": {
"has-flag": "^4.0.0"
@@ -3469,11 +4039,34 @@
"node": ">=18"
}
},
+ "node_modules/terser": {
+ "version": "5.41.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.41.0.tgz",
+ "integrity": "sha512-H406eLPXpZbAX14+B8psIuvIr8+3c+2hkuYzpMkoE0ij+NdsVATbA78vb8neA/eqrj7rywa2pIkdmWRsXW6wmw==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "@jridgewell/source-map": "^0.3.3",
+ "acorn": "^8.14.0",
+ "commander": "^2.20.0",
+ "source-map-support": "~0.5.20"
+ },
+ "bin": {
+ "terser": "bin/terser"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/terser/node_modules/commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "license": "MIT"
+ },
"node_modules/tinyglobby": {
"version": "0.2.14",
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz",
"integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
- "dev": true,
"license": "MIT",
"dependencies": {
"fdir": "^6.4.4",
@@ -3486,6 +4079,18 @@
"url": "https://github.com/sponsors/SuperchupuDev"
}
},
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "license": "MIT",
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
"node_modules/totalist": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz",
@@ -3496,6 +4101,12 @@
"node": ">=6"
}
},
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
+ "license": "0BSD"
+ },
"node_modules/type-check": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
@@ -3523,6 +4134,15 @@
"node": ">=14.17"
}
},
+ "node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
"node_modules/uri-js": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
@@ -3544,7 +4164,6 @@
"version": "6.3.5",
"resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
"integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
- "dev": true,
"license": "MIT",
"dependencies": {
"esbuild": "^0.25.0",
@@ -3615,6 +4234,29 @@
}
}
},
+ "node_modules/vite-plugin-html": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/vite-plugin-html/-/vite-plugin-html-3.2.2.tgz",
+ "integrity": "sha512-vb9C9kcdzcIo/Oc3CLZVS03dL5pDlOFuhGlZYDCJ840BhWl/0nGeZWf3Qy7NlOayscY4Cm/QRgULCQkEZige5Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@rollup/pluginutils": "^4.2.0",
+ "colorette": "^2.0.16",
+ "connect-history-api-fallback": "^1.6.0",
+ "consola": "^2.15.3",
+ "dotenv": "^16.0.0",
+ "dotenv-expand": "^8.0.2",
+ "ejs": "^3.1.6",
+ "fast-glob": "^3.2.11",
+ "fs-extra": "^10.0.1",
+ "html-minifier-terser": "^6.1.0",
+ "node-html-parser": "^5.3.3",
+ "pathe": "^0.2.0"
+ },
+ "peerDependencies": {
+ "vite": ">=2.0.0"
+ }
+ },
"node_modules/vitefu": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.0.6.tgz",
@@ -3674,7 +4316,6 @@
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.0.tgz",
"integrity": "sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==",
- "dev": true,
"license": "ISC",
"optional": true,
"peer": true,
diff --git a/package.json b/package.json
index 0e57d09..b99b4ca 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,7 @@
"@eslint/js": "^9.18.0",
"@fontsource/fira-mono": "^5.0.0",
"@neoconfetti/svelte": "^2.0.0",
- "@sveltejs/adapter-auto": "^6.0.0",
+ "@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/forms": "^0.5.9",
@@ -36,5 +36,9 @@
"tailwindcss": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^6.2.6"
+ },
+ "dependencies": {
+ "date-fns": "^4.1.0",
+ "vite-plugin-html": "^3.2.2"
}
}
diff --git a/src/app.css b/src/app.css
deleted file mode 100644
index 0932fa4..0000000
--- a/src/app.css
+++ /dev/null
@@ -1,108 +0,0 @@
-@import 'tailwindcss';
-@import '@fontsource/fira-mono';
-@plugin '@tailwindcss/forms';
-@plugin '@tailwindcss/typography';
-
-:root {
- --font-body:
- Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
- 'Open Sans', 'Helvetica Neue', sans-serif;
- --font-mono: 'Fira Mono', monospace;
- --color-bg-0: rgb(202, 216, 228);
- --color-bg-1: hsl(209, 36%, 86%);
- --color-bg-2: hsl(224, 44%, 95%);
- --color-theme-1: #ff3e00;
- --color-theme-2: #4075a6;
- --color-text: rgba(0, 0, 0, 0.7);
- --column-width: 42rem;
- --column-margin-top: 4rem;
- font-family: var(--font-body);
- color: var(--color-text);
-}
-
-body {
- min-height: 100vh;
- margin: 0;
- background-attachment: fixed;
- background-color: var(--color-bg-1);
- background-size: 100vw 100vh;
- background-image:
- radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%),
- linear-gradient(180deg, var(--color-bg-0) 0%, var(--color-bg-1) 15%, var(--color-bg-2) 50%);
-}
-
-h1,
-h2,
-p {
- font-weight: 400;
-}
-
-p {
- line-height: 1.5;
-}
-
-a {
- color: var(--color-theme-1);
- text-decoration: none;
-}
-
-a:hover {
- text-decoration: underline;
-}
-
-h1 {
- font-size: 2rem;
- text-align: center;
-}
-
-h2 {
- font-size: 1rem;
-}
-
-pre {
- font-size: 16px;
- font-family: var(--font-mono);
- background-color: rgba(255, 255, 255, 0.45);
- border-radius: 3px;
- box-shadow: 2px 2px 6px rgb(255 255 255 / 25%);
- padding: 0.5em;
- overflow-x: auto;
- color: var(--color-text);
-}
-
-.text-column {
- display: flex;
- max-width: 48rem;
- flex: 0.6;
- flex-direction: column;
- justify-content: center;
- margin: 0 auto;
-}
-
-input,
-button {
- font-size: inherit;
- font-family: inherit;
-}
-
-button:focus:not(:focus-visible) {
- outline: none;
-}
-
-@media (min-width: 720px) {
- h1 {
- font-size: 2.4rem;
- }
-}
-
-.visually-hidden {
- border: 0;
- clip: rect(0 0 0 0);
- height: auto;
- margin: 0;
- overflow: hidden;
- padding: 0;
- position: absolute;
- width: 1px;
- white-space: nowrap;
-}
diff --git a/src/app.html b/src/app.html
index 77a5ff5..dd6892b 100644
--- a/src/app.html
+++ b/src/app.html
@@ -1,12 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
%sveltekit.head%
-
+
+
%sveltekit.body%
diff --git a/src/lib/components/MetaSEO.svelte b/src/lib/components/MetaSEO.svelte
new file mode 100644
index 0000000..9ceb814
--- /dev/null
+++ b/src/lib/components/MetaSEO.svelte
@@ -0,0 +1,24 @@
+
+
+
+ {title}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/lib/components/Navigation.svelte b/src/lib/components/Navigation.svelte
new file mode 100644
index 0000000..a937a2c
--- /dev/null
+++ b/src/lib/components/Navigation.svelte
@@ -0,0 +1,58 @@
+
+
+
diff --git a/src/lib/components/ProfileSection.svelte b/src/lib/components/ProfileSection.svelte
new file mode 100644
index 0000000..f39b7f5
--- /dev/null
+++ b/src/lib/components/ProfileSection.svelte
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+

+
+
+
+
+ {#if nickname}
+
{nickname}
+ {/if}
+
+ {#if username}
+
@{username}
+ {/if}
+
+ {#if location || blog || company}
+
+ {#if location}
+
+
+ {location}
+
+ {/if}
+
+ {#if company}
+
+
+ {company}
+
+ {/if}
+
+ {#if blog}
+
+ {/if}
+
+ {/if}
+
+ {#if bio}
+
{bio}
+ {/if}
+
+
+
+
+
+
+
+
{stats.repositories}
+
Owned Repos
+
+
+
+
+
{stats.followers}
+
Followers
+
+
+
+
+
{stats.following}
+
Following
+
+
+
+
diff --git a/src/lib/components/RepositorySection.svelte b/src/lib/components/RepositorySection.svelte
new file mode 100644
index 0000000..8e3bb54
--- /dev/null
+++ b/src/lib/components/RepositorySection.svelte
@@ -0,0 +1,37 @@
+
+
+
+
+
+
My public repositories
+
+
+
+ {#each repositories as repo (repo.id)}
+
+ {/each}
+
+
+
+
diff --git a/src/lib/components/ui/LangBadge.svelte b/src/lib/components/ui/LangBadge.svelte
new file mode 100644
index 0000000..26a2f41
--- /dev/null
+++ b/src/lib/components/ui/LangBadge.svelte
@@ -0,0 +1,36 @@
+
+
+{#if mode === 'badge'}
+
+
+ {lang}
+
+{:else if mode === 'bar'}
+
+
+
+
{percent.toFixed(1)}%
+
+
+
+{/if}
diff --git a/src/lib/components/ui/RepoCard.svelte b/src/lib/components/ui/RepoCard.svelte
new file mode 100644
index 0000000..ca95b2e
--- /dev/null
+++ b/src/lib/components/ui/RepoCard.svelte
@@ -0,0 +1,191 @@
+
+
+
+
+
+
+
+
+
+
+
+ {repoFullName}
+
+
+
+
+
+ {repo.description || 'No description has been set.'}
+
+
+
+
+
+
diff --git a/src/lib/css/main.css b/src/lib/css/main.css
new file mode 100644
index 0000000..2a9a61c
--- /dev/null
+++ b/src/lib/css/main.css
@@ -0,0 +1,105 @@
+@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
+#username::first-letter {
+ text-transform: capitalize !important;
+}
+
+:root {
+ --gh-bg: #0d1117;
+ --gh-bg-secondary: #161b22;
+ --gh-bg-tertiary: #21262d;
+ --gh-border: #30363d;
+ --gh-border-muted: #21262d;
+ --gh-text: #f0f6fc;
+ --gh-text-secondary: #7d8590;
+ --gh-text-muted: #656d76;
+ --gh-accent: #58a6ff;
+ --gh-accent-emphasis: #1f6feb;
+ --gh-success: #3fb950;
+ --gh-attention: #d29922;
+ --gh-severe: #db6d28;
+ --gh-danger: #f85149;
+}
+
+.gh-bg {
+ background-color: var(--gh-bg);
+}
+.gh-bg-secondary {
+ background-color: var(--gh-bg-secondary);
+}
+.gh-bg-tertiary {
+ background-color: var(--gh-bg-tertiary);
+}
+.gh-border {
+ border-color: var(--gh-border);
+}
+.gh-border-muted {
+ border-color: var(--gh-border-muted);
+}
+.gh-text {
+ color: var(--gh-text);
+}
+.gh-text-secondary {
+ color: var(--gh-text-secondary);
+}
+.gh-text-muted {
+ color: var(--gh-text-muted);
+}
+.gh-accent {
+ color: var(--gh-accent);
+}
+.gh-accent-emphasis {
+ color: var(--gh-accent-emphasis);
+}
+.gh-success {
+ color: var(--gh-success);
+}
+.gh-attention {
+ color: var(--gh-attention);
+}
+.gh-danger {
+ color: var(--gh-danger);
+}
+
+.bg-gh-accent {
+ background-color: var(--gh-accent);
+}
+.bg-gh-accent-emphasis {
+ background-color: var(--gh-accent-emphasis);
+}
+.bg-gh-success {
+ background-color: var(--gh-success);
+}
+.bg-gh-attention {
+ background-color: var(--gh-attention);
+}
+.bg-gh-danger {
+ background-color: var(--gh-danger);
+}
+
+.border-gh-accent {
+ border-color: var(--gh-accent);
+}
+.border-gh-success {
+ border-color: var(--gh-success);
+}
+.border-gh-attention {
+ border-color: var(--gh-attention);
+}
+.border-gh-danger {
+ border-color: var(--gh-danger);
+}
+
+.hover\:border-gh-accent:hover {
+ border-color: var(--gh-accent);
+}
+.hover\:bg-gh-accent:hover {
+ background-color: var(--gh-accent);
+}
+.hover\:bg-gh-accent-emphasis:hover {
+ background-color: var(--gh-accent-emphasis);
+}
+
+body {
+ background-color: var(--gh-bg);
+ color: var(--gh-text);
+}
diff --git a/src/lib/css/tailwind.css b/src/lib/css/tailwind.css
new file mode 100644
index 0000000..cd67023
--- /dev/null
+++ b/src/lib/css/tailwind.css
@@ -0,0 +1,3 @@
+@import 'tailwindcss';
+@plugin '@tailwindcss/forms';
+@plugin '@tailwindcss/typography';
diff --git a/src/lib/data/colors.json b/src/lib/data/colors.json
new file mode 100644
index 0000000..7c17d7f
--- /dev/null
+++ b/src/lib/data/colors.json
@@ -0,0 +1,2742 @@
+{
+ "1C Enterprise": {
+ "color": "#814CCC",
+ "url": "https://github.com/trending?l=1C-Enterprise"
+ },
+ "2-Dimensional Array": {
+ "color": "#38761D",
+ "url": "https://github.com/trending?l=2-Dimensional-Array"
+ },
+ "4D": {
+ "color": "#004289",
+ "url": "https://github.com/trending?l=4D"
+ },
+ "ABAP": {
+ "color": "#E8274B",
+ "url": "https://github.com/trending?l=ABAP"
+ },
+ "ABAP CDS": {
+ "color": "#555e25",
+ "url": "https://github.com/trending?l=ABAP-CDS"
+ },
+ "ActionScript": {
+ "color": "#882B0F",
+ "url": "https://github.com/trending?l=ActionScript"
+ },
+ "Ada": {
+ "color": "#02f88c",
+ "url": "https://github.com/trending?l=Ada"
+ },
+ "Adblock Filter List": {
+ "color": "#800000",
+ "url": "https://github.com/trending?l=Adblock-Filter-List"
+ },
+ "Adobe Font Metrics": {
+ "color": "#fa0f00",
+ "url": "https://github.com/trending?l=Adobe-Font-Metrics"
+ },
+ "Agda": {
+ "color": "#315665",
+ "url": "https://github.com/trending?l=Agda"
+ },
+ "AGS Script": {
+ "color": "#B9D9FF",
+ "url": "https://github.com/trending?l=AGS-Script"
+ },
+ "AIDL": {
+ "color": "#34EB6B",
+ "url": "https://github.com/trending?l=AIDL"
+ },
+ "AL": {
+ "color": "#3AA2B5",
+ "url": "https://github.com/trending?l=AL"
+ },
+ "Alloy": {
+ "color": "#64C800",
+ "url": "https://github.com/trending?l=Alloy"
+ },
+ "Alpine Abuild": {
+ "color": "#0D597F",
+ "url": "https://github.com/trending?l=Alpine-Abuild"
+ },
+ "Altium Designer": {
+ "color": "#A89663",
+ "url": "https://github.com/trending?l=Altium-Designer"
+ },
+ "AMPL": {
+ "color": "#E6EFBB",
+ "url": "https://github.com/trending?l=AMPL"
+ },
+ "AngelScript": {
+ "color": "#C7D7DC",
+ "url": "https://github.com/trending?l=AngelScript"
+ },
+ "Answer Set Programming": {
+ "color": "#A9CC29",
+ "url": "https://github.com/trending?l=Answer-Set-Programming"
+ },
+ "Ant Build System": {
+ "color": "#A9157E",
+ "url": "https://github.com/trending?l=Ant-Build-System"
+ },
+ "Antlers": {
+ "color": "#ff269e",
+ "url": "https://github.com/trending?l=Antlers"
+ },
+ "ANTLR": {
+ "color": "#9DC3FF",
+ "url": "https://github.com/trending?l=ANTLR"
+ },
+ "ApacheConf": {
+ "color": "#d12127",
+ "url": "https://github.com/trending?l=ApacheConf"
+ },
+ "Apex": {
+ "color": "#1797c0",
+ "url": "https://github.com/trending?l=Apex"
+ },
+ "API Blueprint": {
+ "color": "#2ACCA8",
+ "url": "https://github.com/trending?l=API-Blueprint"
+ },
+ "APL": {
+ "color": "#5A8164",
+ "url": "https://github.com/trending?l=APL"
+ },
+ "Apollo Guidance Computer": {
+ "color": "#0B3D91",
+ "url": "https://github.com/trending?l=Apollo-Guidance-Computer"
+ },
+ "AppleScript": {
+ "color": "#101F1F",
+ "url": "https://github.com/trending?l=AppleScript"
+ },
+ "Arc": {
+ "color": "#aa2afe",
+ "url": "https://github.com/trending?l=Arc"
+ },
+ "AsciiDoc": {
+ "color": "#73a0c5",
+ "url": "https://github.com/trending?l=AsciiDoc"
+ },
+ "ASL": {
+ "color": null,
+ "url": "https://github.com/trending?l=ASL"
+ },
+ "ASP.NET": {
+ "color": "#9400ff",
+ "url": "https://github.com/trending?l=ASP.NET"
+ },
+ "AspectJ": {
+ "color": "#a957b0",
+ "url": "https://github.com/trending?l=AspectJ"
+ },
+ "Assembly": {
+ "color": "#6E4C13",
+ "url": "https://github.com/trending?l=Assembly"
+ },
+ "Astro": {
+ "color": "#ff5a03",
+ "url": "https://github.com/trending?l=Astro"
+ },
+ "Asymptote": {
+ "color": "#ff0000",
+ "url": "https://github.com/trending?l=Asymptote"
+ },
+ "ATS": {
+ "color": "#1ac620",
+ "url": "https://github.com/trending?l=ATS"
+ },
+ "Augeas": {
+ "color": "#9CC134",
+ "url": "https://github.com/trending?l=Augeas"
+ },
+ "AutoHotkey": {
+ "color": "#6594b9",
+ "url": "https://github.com/trending?l=AutoHotkey"
+ },
+ "AutoIt": {
+ "color": "#1C3552",
+ "url": "https://github.com/trending?l=AutoIt"
+ },
+ "Avro IDL": {
+ "color": "#0040FF",
+ "url": "https://github.com/trending?l=Avro-IDL"
+ },
+ "Awk": {
+ "color": "#c30e9b",
+ "url": "https://github.com/trending?l=Awk"
+ },
+ "B4X": {
+ "color": "#00e4ff",
+ "url": "https://github.com/trending?l=B4X"
+ },
+ "Ballerina": {
+ "color": "#FF5000",
+ "url": "https://github.com/trending?l=Ballerina"
+ },
+ "BASIC": {
+ "color": "#ff0000",
+ "url": "https://github.com/trending?l=BASIC"
+ },
+ "Batchfile": {
+ "color": "#C1F12E",
+ "url": "https://github.com/trending?l=Batchfile"
+ },
+ "Beef": {
+ "color": "#a52f4e",
+ "url": "https://github.com/trending?l=Beef"
+ },
+ "Befunge": {
+ "color": null,
+ "url": "https://github.com/trending?l=Befunge"
+ },
+ "Berry": {
+ "color": "#15A13C",
+ "url": "https://github.com/trending?l=Berry"
+ },
+ "BibTeX": {
+ "color": "#778899",
+ "url": "https://github.com/trending?l=BibTeX"
+ },
+ "BibTeX Style": {
+ "color": null,
+ "url": "https://github.com/trending?l=BibTeX-Style"
+ },
+ "Bicep": {
+ "color": "#519aba",
+ "url": "https://github.com/trending?l=Bicep"
+ },
+ "Bikeshed": {
+ "color": "#5562ac",
+ "url": "https://github.com/trending?l=Bikeshed"
+ },
+ "Bison": {
+ "color": "#6A463F",
+ "url": "https://github.com/trending?l=Bison"
+ },
+ "BitBake": {
+ "color": "#00bce4",
+ "url": "https://github.com/trending?l=BitBake"
+ },
+ "Blade": {
+ "color": "#f7523f",
+ "url": "https://github.com/trending?l=Blade"
+ },
+ "BlitzBasic": {
+ "color": "#00FFAE",
+ "url": "https://github.com/trending?l=BlitzBasic"
+ },
+ "BlitzMax": {
+ "color": "#cd6400",
+ "url": "https://github.com/trending?l=BlitzMax"
+ },
+ "Bluespec": {
+ "color": "#12223c",
+ "url": "https://github.com/trending?l=Bluespec"
+ },
+ "Bluespec BH": {
+ "color": "#12223c",
+ "url": "https://github.com/trending?l=Bluespec-BH"
+ },
+ "Boo": {
+ "color": "#d4bec1",
+ "url": "https://github.com/trending?l=Boo"
+ },
+ "Boogie": {
+ "color": "#c80fa0",
+ "url": "https://github.com/trending?l=Boogie"
+ },
+ "BQN": {
+ "color": "#2b7067",
+ "url": "https://github.com/trending?l=BQN"
+ },
+ "Brainfuck": {
+ "color": "#2F2530",
+ "url": "https://github.com/trending?l=Brainfuck"
+ },
+ "BrighterScript": {
+ "color": "#66AABB",
+ "url": "https://github.com/trending?l=BrighterScript"
+ },
+ "Brightscript": {
+ "color": "#662D91",
+ "url": "https://github.com/trending?l=Brightscript"
+ },
+ "Browserslist": {
+ "color": "#ffd539",
+ "url": "https://github.com/trending?l=Browserslist"
+ },
+ "BuildStream": {
+ "color": "#006bff",
+ "url": "https://github.com/trending?l=BuildStream"
+ },
+ "C": {
+ "color": "#555555",
+ "url": "https://github.com/trending?l=C"
+ },
+ "C#": {
+ "color": "#178600",
+ "url": "https://github.com/trending?l=Csharp"
+ },
+ "C++": {
+ "color": "#f34b7d",
+ "url": "https://github.com/trending?l=C++"
+ },
+ "C2hs Haskell": {
+ "color": null,
+ "url": "https://github.com/trending?l=C2hs-Haskell"
+ },
+ "Cabal Config": {
+ "color": "#483465",
+ "url": "https://github.com/trending?l=Cabal-Config"
+ },
+ "Caddyfile": {
+ "color": "#22b638",
+ "url": "https://github.com/trending?l=Caddyfile"
+ },
+ "Cadence": {
+ "color": "#00ef8b",
+ "url": "https://github.com/trending?l=Cadence"
+ },
+ "Cairo": {
+ "color": "#ff4a48",
+ "url": "https://github.com/trending?l=Cairo"
+ },
+ "Cairo Zero": {
+ "color": "#ff4a48",
+ "url": "https://github.com/trending?l=Cairo-Zero"
+ },
+ "CameLIGO": {
+ "color": "#3be133",
+ "url": "https://github.com/trending?l=CameLIGO"
+ },
+ "CAP CDS": {
+ "color": "#0092d1",
+ "url": "https://github.com/trending?l=CAP-CDS"
+ },
+ "Cap'n Proto": {
+ "color": "#c42727",
+ "url": "https://github.com/trending?l=Cap'n-Proto"
+ },
+ "Carbon": {
+ "color": "#222222",
+ "url": "https://github.com/trending?l=Carbon"
+ },
+ "CartoCSS": {
+ "color": null,
+ "url": "https://github.com/trending?l=CartoCSS"
+ },
+ "Ceylon": {
+ "color": "#dfa535",
+ "url": "https://github.com/trending?l=Ceylon"
+ },
+ "Chapel": {
+ "color": "#8dc63f",
+ "url": "https://github.com/trending?l=Chapel"
+ },
+ "Charity": {
+ "color": null,
+ "url": "https://github.com/trending?l=Charity"
+ },
+ "ChucK": {
+ "color": "#3f8000",
+ "url": "https://github.com/trending?l=ChucK"
+ },
+ "Circom": {
+ "color": "#707575",
+ "url": "https://github.com/trending?l=Circom"
+ },
+ "Cirru": {
+ "color": "#ccccff",
+ "url": "https://github.com/trending?l=Cirru"
+ },
+ "Clarion": {
+ "color": "#db901e",
+ "url": "https://github.com/trending?l=Clarion"
+ },
+ "Clarity": {
+ "color": "#5546ff",
+ "url": "https://github.com/trending?l=Clarity"
+ },
+ "Classic ASP": {
+ "color": "#6a40fd",
+ "url": "https://github.com/trending?l=Classic-ASP"
+ },
+ "Clean": {
+ "color": "#3F85AF",
+ "url": "https://github.com/trending?l=Clean"
+ },
+ "Click": {
+ "color": "#E4E6F3",
+ "url": "https://github.com/trending?l=Click"
+ },
+ "CLIPS": {
+ "color": "#00A300",
+ "url": "https://github.com/trending?l=CLIPS"
+ },
+ "Clojure": {
+ "color": "#db5855",
+ "url": "https://github.com/trending?l=Clojure"
+ },
+ "Closure Templates": {
+ "color": "#0d948f",
+ "url": "https://github.com/trending?l=Closure-Templates"
+ },
+ "Cloud Firestore Security Rules": {
+ "color": "#FFA000",
+ "url": "https://github.com/trending?l=Cloud-Firestore-Security-Rules"
+ },
+ "CMake": {
+ "color": "#DA3434",
+ "url": "https://github.com/trending?l=CMake"
+ },
+ "COBOL": {
+ "color": null,
+ "url": "https://github.com/trending?l=COBOL"
+ },
+ "CodeQL": {
+ "color": "#140f46",
+ "url": "https://github.com/trending?l=CodeQL"
+ },
+ "CoffeeScript": {
+ "color": "#244776",
+ "url": "https://github.com/trending?l=CoffeeScript"
+ },
+ "ColdFusion": {
+ "color": "#ed2cd6",
+ "url": "https://github.com/trending?l=ColdFusion"
+ },
+ "ColdFusion CFC": {
+ "color": "#ed2cd6",
+ "url": "https://github.com/trending?l=ColdFusion-CFC"
+ },
+ "COLLADA": {
+ "color": "#F1A42B",
+ "url": "https://github.com/trending?l=COLLADA"
+ },
+ "Common Lisp": {
+ "color": "#3fb68b",
+ "url": "https://github.com/trending?l=Common-Lisp"
+ },
+ "Common Workflow Language": {
+ "color": "#B5314C",
+ "url": "https://github.com/trending?l=Common-Workflow-Language"
+ },
+ "Component Pascal": {
+ "color": "#B0CE4E",
+ "url": "https://github.com/trending?l=Component-Pascal"
+ },
+ "Cool": {
+ "color": null,
+ "url": "https://github.com/trending?l=Cool"
+ },
+ "crontab": {
+ "color": "#ead7ac",
+ "url": "https://github.com/trending?l=crontab"
+ },
+ "Crystal": {
+ "color": "#000100",
+ "url": "https://github.com/trending?l=Crystal"
+ },
+ "CSON": {
+ "color": "#244776",
+ "url": "https://github.com/trending?l=CSON"
+ },
+ "Csound": {
+ "color": "#1a1a1a",
+ "url": "https://github.com/trending?l=Csound"
+ },
+ "Csound Document": {
+ "color": "#1a1a1a",
+ "url": "https://github.com/trending?l=Csound-Document"
+ },
+ "Csound Score": {
+ "color": "#1a1a1a",
+ "url": "https://github.com/trending?l=Csound-Score"
+ },
+ "CSS": {
+ "color": "#663399",
+ "url": "https://github.com/trending?l=CSS"
+ },
+ "CSV": {
+ "color": "#237346",
+ "url": "https://github.com/trending?l=CSV"
+ },
+ "Cuda": {
+ "color": "#3A4E3A",
+ "url": "https://github.com/trending?l=Cuda"
+ },
+ "CUE": {
+ "color": "#5886E1",
+ "url": "https://github.com/trending?l=CUE"
+ },
+ "Curry": {
+ "color": "#531242",
+ "url": "https://github.com/trending?l=Curry"
+ },
+ "CWeb": {
+ "color": "#00007a",
+ "url": "https://github.com/trending?l=CWeb"
+ },
+ "Cycript": {
+ "color": null,
+ "url": "https://github.com/trending?l=Cycript"
+ },
+ "Cylc": {
+ "color": "#00b3fd",
+ "url": "https://github.com/trending?l=Cylc"
+ },
+ "Cypher": {
+ "color": "#34c0eb",
+ "url": "https://github.com/trending?l=Cypher"
+ },
+ "Cython": {
+ "color": "#fedf5b",
+ "url": "https://github.com/trending?l=Cython"
+ },
+ "D": {
+ "color": "#ba595e",
+ "url": "https://github.com/trending?l=D"
+ },
+ "D2": {
+ "color": "#526ee8",
+ "url": "https://github.com/trending?l=D2"
+ },
+ "Dafny": {
+ "color": "#FFEC25",
+ "url": "https://github.com/trending?l=Dafny"
+ },
+ "Darcs Patch": {
+ "color": "#8eff23",
+ "url": "https://github.com/trending?l=Darcs-Patch"
+ },
+ "Dart": {
+ "color": "#00B4AB",
+ "url": "https://github.com/trending?l=Dart"
+ },
+ "DataWeave": {
+ "color": "#003a52",
+ "url": "https://github.com/trending?l=DataWeave"
+ },
+ "Debian Package Control File": {
+ "color": "#D70751",
+ "url": "https://github.com/trending?l=Debian-Package-Control-File"
+ },
+ "DenizenScript": {
+ "color": "#FBEE96",
+ "url": "https://github.com/trending?l=DenizenScript"
+ },
+ "Dhall": {
+ "color": "#dfafff",
+ "url": "https://github.com/trending?l=Dhall"
+ },
+ "DIGITAL Command Language": {
+ "color": null,
+ "url": "https://github.com/trending?l=DIGITAL-Command-Language"
+ },
+ "DirectX 3D File": {
+ "color": "#aace60",
+ "url": "https://github.com/trending?l=DirectX-3D-File"
+ },
+ "DM": {
+ "color": "#447265",
+ "url": "https://github.com/trending?l=DM"
+ },
+ "Dockerfile": {
+ "color": "#384d54",
+ "url": "https://github.com/trending?l=Dockerfile"
+ },
+ "Dogescript": {
+ "color": "#cca760",
+ "url": "https://github.com/trending?l=Dogescript"
+ },
+ "Dotenv": {
+ "color": "#e5d559",
+ "url": "https://github.com/trending?l=Dotenv"
+ },
+ "DTrace": {
+ "color": null,
+ "url": "https://github.com/trending?l=DTrace"
+ },
+ "Dune": {
+ "color": "#89421e",
+ "url": "https://github.com/trending?l=Dune"
+ },
+ "Dylan": {
+ "color": "#6c616e",
+ "url": "https://github.com/trending?l=Dylan"
+ },
+ "E": {
+ "color": "#ccce35",
+ "url": "https://github.com/trending?l=E"
+ },
+ "Earthly": {
+ "color": "#2af0ff",
+ "url": "https://github.com/trending?l=Earthly"
+ },
+ "Easybuild": {
+ "color": "#069406",
+ "url": "https://github.com/trending?l=Easybuild"
+ },
+ "eC": {
+ "color": "#913960",
+ "url": "https://github.com/trending?l=eC"
+ },
+ "Ecere Projects": {
+ "color": "#913960",
+ "url": "https://github.com/trending?l=Ecere-Projects"
+ },
+ "ECL": {
+ "color": "#8a1267",
+ "url": "https://github.com/trending?l=ECL"
+ },
+ "ECLiPSe": {
+ "color": "#001d9d",
+ "url": "https://github.com/trending?l=ECLiPSe"
+ },
+ "Ecmarkup": {
+ "color": "#eb8131",
+ "url": "https://github.com/trending?l=Ecmarkup"
+ },
+ "Edge": {
+ "color": "#0dffe0",
+ "url": "https://github.com/trending?l=Edge"
+ },
+ "EdgeQL": {
+ "color": "#31A7FF",
+ "url": "https://github.com/trending?l=EdgeQL"
+ },
+ "EditorConfig": {
+ "color": "#fff1f2",
+ "url": "https://github.com/trending?l=EditorConfig"
+ },
+ "Eiffel": {
+ "color": "#4d6977",
+ "url": "https://github.com/trending?l=Eiffel"
+ },
+ "EJS": {
+ "color": "#a91e50",
+ "url": "https://github.com/trending?l=EJS"
+ },
+ "Elixir": {
+ "color": "#6e4a7e",
+ "url": "https://github.com/trending?l=Elixir"
+ },
+ "Elm": {
+ "color": "#60B5CC",
+ "url": "https://github.com/trending?l=Elm"
+ },
+ "Elvish": {
+ "color": "#55BB55",
+ "url": "https://github.com/trending?l=Elvish"
+ },
+ "Elvish Transcript": {
+ "color": "#55BB55",
+ "url": "https://github.com/trending?l=Elvish-Transcript"
+ },
+ "Emacs Lisp": {
+ "color": "#c065db",
+ "url": "https://github.com/trending?l=Emacs-Lisp"
+ },
+ "EmberScript": {
+ "color": "#FFF4F3",
+ "url": "https://github.com/trending?l=EmberScript"
+ },
+ "EQ": {
+ "color": "#a78649",
+ "url": "https://github.com/trending?l=EQ"
+ },
+ "Erlang": {
+ "color": "#B83998",
+ "url": "https://github.com/trending?l=Erlang"
+ },
+ "Euphoria": {
+ "color": "#FF790B",
+ "url": "https://github.com/trending?l=Euphoria"
+ },
+ "F#": {
+ "color": "#b845fc",
+ "url": "https://github.com/trending?l=Fsharp"
+ },
+ "F*": {
+ "color": "#572e30",
+ "url": "https://github.com/trending?l=F*"
+ },
+ "Factor": {
+ "color": "#636746",
+ "url": "https://github.com/trending?l=Factor"
+ },
+ "Fancy": {
+ "color": "#7b9db4",
+ "url": "https://github.com/trending?l=Fancy"
+ },
+ "Fantom": {
+ "color": "#14253c",
+ "url": "https://github.com/trending?l=Fantom"
+ },
+ "Faust": {
+ "color": "#c37240",
+ "url": "https://github.com/trending?l=Faust"
+ },
+ "Fennel": {
+ "color": "#fff3d7",
+ "url": "https://github.com/trending?l=Fennel"
+ },
+ "FIGlet Font": {
+ "color": "#FFDDBB",
+ "url": "https://github.com/trending?l=FIGlet-Font"
+ },
+ "Filebench WML": {
+ "color": "#F6B900",
+ "url": "https://github.com/trending?l=Filebench-WML"
+ },
+ "Filterscript": {
+ "color": null,
+ "url": "https://github.com/trending?l=Filterscript"
+ },
+ "FIRRTL": {
+ "color": "#2f632f",
+ "url": "https://github.com/trending?l=FIRRTL"
+ },
+ "fish": {
+ "color": "#4aae47",
+ "url": "https://github.com/trending?l=fish"
+ },
+ "Fluent": {
+ "color": "#ffcc33",
+ "url": "https://github.com/trending?l=Fluent"
+ },
+ "FLUX": {
+ "color": "#88ccff",
+ "url": "https://github.com/trending?l=FLUX"
+ },
+ "Forth": {
+ "color": "#341708",
+ "url": "https://github.com/trending?l=Forth"
+ },
+ "Fortran": {
+ "color": "#4d41b1",
+ "url": "https://github.com/trending?l=Fortran"
+ },
+ "Fortran Free Form": {
+ "color": "#4d41b1",
+ "url": "https://github.com/trending?l=Fortran-Free-Form"
+ },
+ "FreeBASIC": {
+ "color": "#141AC9",
+ "url": "https://github.com/trending?l=FreeBASIC"
+ },
+ "FreeMarker": {
+ "color": "#0050b2",
+ "url": "https://github.com/trending?l=FreeMarker"
+ },
+ "Frege": {
+ "color": "#00cafe",
+ "url": "https://github.com/trending?l=Frege"
+ },
+ "Futhark": {
+ "color": "#5f021f",
+ "url": "https://github.com/trending?l=Futhark"
+ },
+ "G-code": {
+ "color": "#D08CF2",
+ "url": "https://github.com/trending?l=G-code"
+ },
+ "Game Maker Language": {
+ "color": "#71b417",
+ "url": "https://github.com/trending?l=Game-Maker-Language"
+ },
+ "GAML": {
+ "color": "#FFC766",
+ "url": "https://github.com/trending?l=GAML"
+ },
+ "GAMS": {
+ "color": "#f49a22",
+ "url": "https://github.com/trending?l=GAMS"
+ },
+ "GAP": {
+ "color": "#0000cc",
+ "url": "https://github.com/trending?l=GAP"
+ },
+ "GCC Machine Description": {
+ "color": "#FFCFAB",
+ "url": "https://github.com/trending?l=GCC-Machine-Description"
+ },
+ "GDB": {
+ "color": null,
+ "url": "https://github.com/trending?l=GDB"
+ },
+ "GDScript": {
+ "color": "#355570",
+ "url": "https://github.com/trending?l=GDScript"
+ },
+ "GEDCOM": {
+ "color": "#003058",
+ "url": "https://github.com/trending?l=GEDCOM"
+ },
+ "Gemfile.lock": {
+ "color": "#701516",
+ "url": "https://github.com/trending?l=Gemfile.lock"
+ },
+ "Gemini": {
+ "color": "#ff6900",
+ "url": "https://github.com/trending?l=Gemini"
+ },
+ "Genero 4gl": {
+ "color": "#63408e",
+ "url": "https://github.com/trending?l=Genero-4gl"
+ },
+ "Genero per": {
+ "color": "#d8df39",
+ "url": "https://github.com/trending?l=Genero-per"
+ },
+ "Genie": {
+ "color": "#fb855d",
+ "url": "https://github.com/trending?l=Genie"
+ },
+ "Genshi": {
+ "color": "#951531",
+ "url": "https://github.com/trending?l=Genshi"
+ },
+ "Gentoo Ebuild": {
+ "color": "#9400ff",
+ "url": "https://github.com/trending?l=Gentoo-Ebuild"
+ },
+ "Gentoo Eclass": {
+ "color": "#9400ff",
+ "url": "https://github.com/trending?l=Gentoo-Eclass"
+ },
+ "Gerber Image": {
+ "color": "#d20b00",
+ "url": "https://github.com/trending?l=Gerber-Image"
+ },
+ "Gherkin": {
+ "color": "#5B2063",
+ "url": "https://github.com/trending?l=Gherkin"
+ },
+ "Git Attributes": {
+ "color": "#F44D27",
+ "url": "https://github.com/trending?l=Git-Attributes"
+ },
+ "Git Config": {
+ "color": "#F44D27",
+ "url": "https://github.com/trending?l=Git-Config"
+ },
+ "Git Revision List": {
+ "color": "#F44D27",
+ "url": "https://github.com/trending?l=Git-Revision-List"
+ },
+ "Gleam": {
+ "color": "#ffaff3",
+ "url": "https://github.com/trending?l=Gleam"
+ },
+ "Glimmer JS": {
+ "color": "#F5835F",
+ "url": "https://github.com/trending?l=Glimmer-JS"
+ },
+ "Glimmer TS": {
+ "color": "#3178c6",
+ "url": "https://github.com/trending?l=Glimmer-TS"
+ },
+ "GLSL": {
+ "color": "#5686a5",
+ "url": "https://github.com/trending?l=GLSL"
+ },
+ "Glyph": {
+ "color": "#c1ac7f",
+ "url": "https://github.com/trending?l=Glyph"
+ },
+ "Gnuplot": {
+ "color": "#f0a9f0",
+ "url": "https://github.com/trending?l=Gnuplot"
+ },
+ "Go": {
+ "color": "#00ADD8",
+ "url": "https://github.com/trending?l=Go"
+ },
+ "Go Checksums": {
+ "color": "#00ADD8",
+ "url": "https://github.com/trending?l=Go-Checksums"
+ },
+ "Go Module": {
+ "color": "#00ADD8",
+ "url": "https://github.com/trending?l=Go-Module"
+ },
+ "Go Workspace": {
+ "color": "#00ADD8",
+ "url": "https://github.com/trending?l=Go-Workspace"
+ },
+ "Godot Resource": {
+ "color": "#355570",
+ "url": "https://github.com/trending?l=Godot-Resource"
+ },
+ "Golo": {
+ "color": "#88562A",
+ "url": "https://github.com/trending?l=Golo"
+ },
+ "Gosu": {
+ "color": "#82937f",
+ "url": "https://github.com/trending?l=Gosu"
+ },
+ "Grace": {
+ "color": "#615f8b",
+ "url": "https://github.com/trending?l=Grace"
+ },
+ "Gradle": {
+ "color": "#02303a",
+ "url": "https://github.com/trending?l=Gradle"
+ },
+ "Gradle Kotlin DSL": {
+ "color": "#02303a",
+ "url": "https://github.com/trending?l=Gradle-Kotlin-DSL"
+ },
+ "Grammatical Framework": {
+ "color": "#ff0000",
+ "url": "https://github.com/trending?l=Grammatical-Framework"
+ },
+ "GraphQL": {
+ "color": "#e10098",
+ "url": "https://github.com/trending?l=GraphQL"
+ },
+ "Graphviz (DOT)": {
+ "color": "#2596be",
+ "url": "https://github.com/trending?l=Graphviz-(DOT)"
+ },
+ "Groovy": {
+ "color": "#4298b8",
+ "url": "https://github.com/trending?l=Groovy"
+ },
+ "Groovy Server Pages": {
+ "color": "#4298b8",
+ "url": "https://github.com/trending?l=Groovy-Server-Pages"
+ },
+ "GSC": {
+ "color": "#FF6800",
+ "url": "https://github.com/trending?l=GSC"
+ },
+ "Hack": {
+ "color": "#878787",
+ "url": "https://github.com/trending?l=Hack"
+ },
+ "Haml": {
+ "color": "#ece2a9",
+ "url": "https://github.com/trending?l=Haml"
+ },
+ "Handlebars": {
+ "color": "#f7931e",
+ "url": "https://github.com/trending?l=Handlebars"
+ },
+ "HAProxy": {
+ "color": "#106da9",
+ "url": "https://github.com/trending?l=HAProxy"
+ },
+ "Harbour": {
+ "color": "#0e60e3",
+ "url": "https://github.com/trending?l=Harbour"
+ },
+ "Hare": {
+ "color": "#9d7424",
+ "url": "https://github.com/trending?l=Hare"
+ },
+ "Haskell": {
+ "color": "#5e5086",
+ "url": "https://github.com/trending?l=Haskell"
+ },
+ "Haxe": {
+ "color": "#df7900",
+ "url": "https://github.com/trending?l=Haxe"
+ },
+ "HCL": {
+ "color": "#844FBA",
+ "url": "https://github.com/trending?l=HCL"
+ },
+ "HIP": {
+ "color": "#4F3A4F",
+ "url": "https://github.com/trending?l=HIP"
+ },
+ "HiveQL": {
+ "color": "#dce200",
+ "url": "https://github.com/trending?l=HiveQL"
+ },
+ "HLSL": {
+ "color": "#aace60",
+ "url": "https://github.com/trending?l=HLSL"
+ },
+ "HOCON": {
+ "color": "#9ff8ee",
+ "url": "https://github.com/trending?l=HOCON"
+ },
+ "HolyC": {
+ "color": "#ffefaf",
+ "url": "https://github.com/trending?l=HolyC"
+ },
+ "hoon": {
+ "color": "#00b171",
+ "url": "https://github.com/trending?l=hoon"
+ },
+ "Hosts File": {
+ "color": "#308888",
+ "url": "https://github.com/trending?l=Hosts-File"
+ },
+ "HTML": {
+ "color": "#e34c26",
+ "url": "https://github.com/trending?l=HTML"
+ },
+ "HTML+ECR": {
+ "color": "#2e1052",
+ "url": "https://github.com/trending?l=HTML+ECR"
+ },
+ "HTML+EEX": {
+ "color": "#6e4a7e",
+ "url": "https://github.com/trending?l=HTML+EEX"
+ },
+ "HTML+ERB": {
+ "color": "#701516",
+ "url": "https://github.com/trending?l=HTML+ERB"
+ },
+ "HTML+PHP": {
+ "color": "#4f5d95",
+ "url": "https://github.com/trending?l=HTML+PHP"
+ },
+ "HTML+Razor": {
+ "color": "#512be4",
+ "url": "https://github.com/trending?l=HTML+Razor"
+ },
+ "HTTP": {
+ "color": "#005C9C",
+ "url": "https://github.com/trending?l=HTTP"
+ },
+ "HXML": {
+ "color": "#f68712",
+ "url": "https://github.com/trending?l=HXML"
+ },
+ "Hy": {
+ "color": "#7790B2",
+ "url": "https://github.com/trending?l=Hy"
+ },
+ "HyPhy": {
+ "color": null,
+ "url": "https://github.com/trending?l=HyPhy"
+ },
+ "iCalendar": {
+ "color": "#ec564c",
+ "url": "https://github.com/trending?l=iCalendar"
+ },
+ "IDL": {
+ "color": "#a3522f",
+ "url": "https://github.com/trending?l=IDL"
+ },
+ "Idris": {
+ "color": "#b30000",
+ "url": "https://github.com/trending?l=Idris"
+ },
+ "Ignore List": {
+ "color": "#000000",
+ "url": "https://github.com/trending?l=Ignore-List"
+ },
+ "IGOR Pro": {
+ "color": "#0000cc",
+ "url": "https://github.com/trending?l=IGOR-Pro"
+ },
+ "ImageJ Macro": {
+ "color": "#99AAFF",
+ "url": "https://github.com/trending?l=ImageJ-Macro"
+ },
+ "Imba": {
+ "color": "#16cec6",
+ "url": "https://github.com/trending?l=Imba"
+ },
+ "Inform 7": {
+ "color": null,
+ "url": "https://github.com/trending?l=Inform-7"
+ },
+ "INI": {
+ "color": "#d1dbe0",
+ "url": "https://github.com/trending?l=INI"
+ },
+ "Ink": {
+ "color": null,
+ "url": "https://github.com/trending?l=Ink"
+ },
+ "Inno Setup": {
+ "color": "#264b99",
+ "url": "https://github.com/trending?l=Inno-Setup"
+ },
+ "Io": {
+ "color": "#a9188d",
+ "url": "https://github.com/trending?l=Io"
+ },
+ "Ioke": {
+ "color": "#078193",
+ "url": "https://github.com/trending?l=Ioke"
+ },
+ "Isabelle": {
+ "color": "#FEFE00",
+ "url": "https://github.com/trending?l=Isabelle"
+ },
+ "Isabelle ROOT": {
+ "color": "#FEFE00",
+ "url": "https://github.com/trending?l=Isabelle-ROOT"
+ },
+ "ISPC": {
+ "color": "#2D68B1",
+ "url": "https://github.com/trending?l=ISPC"
+ },
+ "J": {
+ "color": "#9EEDFF",
+ "url": "https://github.com/trending?l=J"
+ },
+ "Jai": {
+ "color": "#ab8b4b",
+ "url": "https://github.com/trending?l=Jai"
+ },
+ "Janet": {
+ "color": "#0886a5",
+ "url": "https://github.com/trending?l=Janet"
+ },
+ "JAR Manifest": {
+ "color": "#b07219",
+ "url": "https://github.com/trending?l=JAR-Manifest"
+ },
+ "Jasmin": {
+ "color": "#d03600",
+ "url": "https://github.com/trending?l=Jasmin"
+ },
+ "Java": {
+ "color": "#b07219",
+ "url": "https://github.com/trending?l=Java"
+ },
+ "Java Properties": {
+ "color": "#2A6277",
+ "url": "https://github.com/trending?l=Java-Properties"
+ },
+ "Java Server Pages": {
+ "color": "#2A6277",
+ "url": "https://github.com/trending?l=Java-Server-Pages"
+ },
+ "Java Template Engine": {
+ "color": "#2A6277",
+ "url": "https://github.com/trending?l=Java-Template-Engine"
+ },
+ "JavaScript": {
+ "color": "#f1e05a",
+ "url": "https://github.com/trending?l=JavaScript"
+ },
+ "JavaScript+ERB": {
+ "color": "#f1e05a",
+ "url": "https://github.com/trending?l=JavaScript+ERB"
+ },
+ "JCL": {
+ "color": "#d90e09",
+ "url": "https://github.com/trending?l=JCL"
+ },
+ "Jest Snapshot": {
+ "color": "#15c213",
+ "url": "https://github.com/trending?l=Jest-Snapshot"
+ },
+ "JetBrains MPS": {
+ "color": "#21D789",
+ "url": "https://github.com/trending?l=JetBrains-MPS"
+ },
+ "JFlex": {
+ "color": "#DBCA00",
+ "url": "https://github.com/trending?l=JFlex"
+ },
+ "Jinja": {
+ "color": "#a52a22",
+ "url": "https://github.com/trending?l=Jinja"
+ },
+ "Jison": {
+ "color": "#56b3cb",
+ "url": "https://github.com/trending?l=Jison"
+ },
+ "Jison Lex": {
+ "color": "#56b3cb",
+ "url": "https://github.com/trending?l=Jison-Lex"
+ },
+ "Jolie": {
+ "color": "#843179",
+ "url": "https://github.com/trending?l=Jolie"
+ },
+ "jq": {
+ "color": "#c7254e",
+ "url": "https://github.com/trending?l=jq"
+ },
+ "JSON": {
+ "color": "#292929",
+ "url": "https://github.com/trending?l=JSON"
+ },
+ "JSON with Comments": {
+ "color": "#292929",
+ "url": "https://github.com/trending?l=JSON-with-Comments"
+ },
+ "JSON5": {
+ "color": "#267CB9",
+ "url": "https://github.com/trending?l=JSON5"
+ },
+ "JSONiq": {
+ "color": "#40d47e",
+ "url": "https://github.com/trending?l=JSONiq"
+ },
+ "JSONLD": {
+ "color": "#0c479c",
+ "url": "https://github.com/trending?l=JSONLD"
+ },
+ "Jsonnet": {
+ "color": "#0064bd",
+ "url": "https://github.com/trending?l=Jsonnet"
+ },
+ "Julia": {
+ "color": "#a270ba",
+ "url": "https://github.com/trending?l=Julia"
+ },
+ "Julia REPL": {
+ "color": "#a270ba",
+ "url": "https://github.com/trending?l=Julia-REPL"
+ },
+ "Jupyter Notebook": {
+ "color": "#DA5B0B",
+ "url": "https://github.com/trending?l=Jupyter-Notebook"
+ },
+ "Just": {
+ "color": "#384d54",
+ "url": "https://github.com/trending?l=Just"
+ },
+ "Kaitai Struct": {
+ "color": "#773b37",
+ "url": "https://github.com/trending?l=Kaitai-Struct"
+ },
+ "KakouneScript": {
+ "color": "#6f8042",
+ "url": "https://github.com/trending?l=KakouneScript"
+ },
+ "KDL": {
+ "color": "#ffb3b3",
+ "url": "https://github.com/trending?l=KDL"
+ },
+ "KerboScript": {
+ "color": "#41adf0",
+ "url": "https://github.com/trending?l=KerboScript"
+ },
+ "KiCad Layout": {
+ "color": "#2f4aab",
+ "url": "https://github.com/trending?l=KiCad-Layout"
+ },
+ "KiCad Legacy Layout": {
+ "color": "#2f4aab",
+ "url": "https://github.com/trending?l=KiCad-Legacy-Layout"
+ },
+ "KiCad Schematic": {
+ "color": "#2f4aab",
+ "url": "https://github.com/trending?l=KiCad-Schematic"
+ },
+ "Koka": {
+ "color": "#215166",
+ "url": "https://github.com/trending?l=Koka"
+ },
+ "Kotlin": {
+ "color": "#A97BFF",
+ "url": "https://github.com/trending?l=Kotlin"
+ },
+ "KRL": {
+ "color": "#28430A",
+ "url": "https://github.com/trending?l=KRL"
+ },
+ "kvlang": {
+ "color": "#1da6e0",
+ "url": "https://github.com/trending?l=kvlang"
+ },
+ "LabVIEW": {
+ "color": "#fede06",
+ "url": "https://github.com/trending?l=LabVIEW"
+ },
+ "Lark": {
+ "color": "#2980B9",
+ "url": "https://github.com/trending?l=Lark"
+ },
+ "Lasso": {
+ "color": "#999999",
+ "url": "https://github.com/trending?l=Lasso"
+ },
+ "Latte": {
+ "color": "#f2a542",
+ "url": "https://github.com/trending?l=Latte"
+ },
+ "Lean": {
+ "color": null,
+ "url": "https://github.com/trending?l=Lean"
+ },
+ "Lean 4": {
+ "color": null,
+ "url": "https://github.com/trending?l=Lean-4"
+ },
+ "Less": {
+ "color": "#1d365d",
+ "url": "https://github.com/trending?l=Less"
+ },
+ "Lex": {
+ "color": "#DBCA00",
+ "url": "https://github.com/trending?l=Lex"
+ },
+ "LFE": {
+ "color": "#4C3023",
+ "url": "https://github.com/trending?l=LFE"
+ },
+ "LigoLANG": {
+ "color": "#0e74ff",
+ "url": "https://github.com/trending?l=LigoLANG"
+ },
+ "LilyPond": {
+ "color": "#9ccc7c",
+ "url": "https://github.com/trending?l=LilyPond"
+ },
+ "Limbo": {
+ "color": null,
+ "url": "https://github.com/trending?l=Limbo"
+ },
+ "Linear Programming": {
+ "color": null,
+ "url": "https://github.com/trending?l=Linear-Programming"
+ },
+ "Linker Script": {
+ "color": null,
+ "url": "https://github.com/trending?l=Linker-Script"
+ },
+ "Liquid": {
+ "color": "#67b8de",
+ "url": "https://github.com/trending?l=Liquid"
+ },
+ "Literate Agda": {
+ "color": "#315665",
+ "url": "https://github.com/trending?l=Literate-Agda"
+ },
+ "Literate CoffeeScript": {
+ "color": "#244776",
+ "url": "https://github.com/trending?l=Literate-CoffeeScript"
+ },
+ "Literate Haskell": {
+ "color": "#5e5086",
+ "url": "https://github.com/trending?l=Literate-Haskell"
+ },
+ "LiveCode Script": {
+ "color": "#0c5ba5",
+ "url": "https://github.com/trending?l=LiveCode-Script"
+ },
+ "LiveScript": {
+ "color": "#499886",
+ "url": "https://github.com/trending?l=LiveScript"
+ },
+ "LLVM": {
+ "color": "#185619",
+ "url": "https://github.com/trending?l=LLVM"
+ },
+ "Logos": {
+ "color": null,
+ "url": "https://github.com/trending?l=Logos"
+ },
+ "Logtalk": {
+ "color": "#295b9a",
+ "url": "https://github.com/trending?l=Logtalk"
+ },
+ "LOLCODE": {
+ "color": "#cc9900",
+ "url": "https://github.com/trending?l=LOLCODE"
+ },
+ "LookML": {
+ "color": "#652B81",
+ "url": "https://github.com/trending?l=LookML"
+ },
+ "LoomScript": {
+ "color": null,
+ "url": "https://github.com/trending?l=LoomScript"
+ },
+ "LSL": {
+ "color": "#3d9970",
+ "url": "https://github.com/trending?l=LSL"
+ },
+ "Lua": {
+ "color": "#000080",
+ "url": "https://github.com/trending?l=Lua"
+ },
+ "Luau": {
+ "color": "#00A2FF",
+ "url": "https://github.com/trending?l=Luau"
+ },
+ "M": {
+ "color": null,
+ "url": "https://github.com/trending?l=M"
+ },
+ "M3U": {
+ "color": "#179C7D",
+ "url": "https://github.com/trending?l=M3U"
+ },
+ "M4": {
+ "color": null,
+ "url": "https://github.com/trending?l=M4"
+ },
+ "M4Sugar": {
+ "color": null,
+ "url": "https://github.com/trending?l=M4Sugar"
+ },
+ "Macaulay2": {
+ "color": "#d8ffff",
+ "url": "https://github.com/trending?l=Macaulay2"
+ },
+ "Makefile": {
+ "color": "#427819",
+ "url": "https://github.com/trending?l=Makefile"
+ },
+ "Mako": {
+ "color": "#7e858d",
+ "url": "https://github.com/trending?l=Mako"
+ },
+ "Markdown": {
+ "color": "#083fa1",
+ "url": "https://github.com/trending?l=Markdown"
+ },
+ "Marko": {
+ "color": "#42bff2",
+ "url": "https://github.com/trending?l=Marko"
+ },
+ "Mask": {
+ "color": "#f97732",
+ "url": "https://github.com/trending?l=Mask"
+ },
+ "Mathematica": {
+ "color": "#dd1100",
+ "url": "https://github.com/trending?l=Mathematica"
+ },
+ "MATLAB": {
+ "color": "#e16737",
+ "url": "https://github.com/trending?l=MATLAB"
+ },
+ "Max": {
+ "color": "#c4a79c",
+ "url": "https://github.com/trending?l=Max"
+ },
+ "MAXScript": {
+ "color": "#00a6a6",
+ "url": "https://github.com/trending?l=MAXScript"
+ },
+ "mcfunction": {
+ "color": "#E22837",
+ "url": "https://github.com/trending?l=mcfunction"
+ },
+ "mdsvex": {
+ "color": "#5f9ea0",
+ "url": "https://github.com/trending?l=mdsvex"
+ },
+ "MDX": {
+ "color": "#fcb32c",
+ "url": "https://github.com/trending?l=MDX"
+ },
+ "Mercury": {
+ "color": "#ff2b2b",
+ "url": "https://github.com/trending?l=Mercury"
+ },
+ "Mermaid": {
+ "color": "#ff3670",
+ "url": "https://github.com/trending?l=Mermaid"
+ },
+ "Meson": {
+ "color": "#007800",
+ "url": "https://github.com/trending?l=Meson"
+ },
+ "Metal": {
+ "color": "#8f14e9",
+ "url": "https://github.com/trending?l=Metal"
+ },
+ "MiniD": {
+ "color": null,
+ "url": "https://github.com/trending?l=MiniD"
+ },
+ "MiniYAML": {
+ "color": "#ff1111",
+ "url": "https://github.com/trending?l=MiniYAML"
+ },
+ "MiniZinc": {
+ "color": "#06a9e6",
+ "url": "https://github.com/trending?l=MiniZinc"
+ },
+ "Mint": {
+ "color": "#02b046",
+ "url": "https://github.com/trending?l=Mint"
+ },
+ "Mirah": {
+ "color": "#c7a938",
+ "url": "https://github.com/trending?l=Mirah"
+ },
+ "mIRC Script": {
+ "color": "#3d57c3",
+ "url": "https://github.com/trending?l=mIRC-Script"
+ },
+ "MLIR": {
+ "color": "#5EC8DB",
+ "url": "https://github.com/trending?l=MLIR"
+ },
+ "Modelica": {
+ "color": "#de1d31",
+ "url": "https://github.com/trending?l=Modelica"
+ },
+ "Modula-2": {
+ "color": "#10253f",
+ "url": "https://github.com/trending?l=Modula-2"
+ },
+ "Modula-3": {
+ "color": "#223388",
+ "url": "https://github.com/trending?l=Modula-3"
+ },
+ "Module Management System": {
+ "color": null,
+ "url": "https://github.com/trending?l=Module-Management-System"
+ },
+ "Mojo": {
+ "color": "#ff4c1f",
+ "url": "https://github.com/trending?l=Mojo"
+ },
+ "Monkey": {
+ "color": null,
+ "url": "https://github.com/trending?l=Monkey"
+ },
+ "Monkey C": {
+ "color": "#8D6747",
+ "url": "https://github.com/trending?l=Monkey-C"
+ },
+ "Moocode": {
+ "color": null,
+ "url": "https://github.com/trending?l=Moocode"
+ },
+ "MoonBit": {
+ "color": "#b92381",
+ "url": "https://github.com/trending?l=MoonBit"
+ },
+ "MoonScript": {
+ "color": "#ff4585",
+ "url": "https://github.com/trending?l=MoonScript"
+ },
+ "Motoko": {
+ "color": "#fbb03b",
+ "url": "https://github.com/trending?l=Motoko"
+ },
+ "Motorola 68K Assembly": {
+ "color": "#005daa",
+ "url": "https://github.com/trending?l=Motorola-68K-Assembly"
+ },
+ "Move": {
+ "color": "#4a137a",
+ "url": "https://github.com/trending?l=Move"
+ },
+ "MQL4": {
+ "color": "#62A8D6",
+ "url": "https://github.com/trending?l=MQL4"
+ },
+ "MQL5": {
+ "color": "#4A76B8",
+ "url": "https://github.com/trending?l=MQL5"
+ },
+ "MTML": {
+ "color": "#b7e1f4",
+ "url": "https://github.com/trending?l=MTML"
+ },
+ "MUF": {
+ "color": null,
+ "url": "https://github.com/trending?l=MUF"
+ },
+ "mupad": {
+ "color": "#244963",
+ "url": "https://github.com/trending?l=mupad"
+ },
+ "Mustache": {
+ "color": "#724b3b",
+ "url": "https://github.com/trending?l=Mustache"
+ },
+ "Myghty": {
+ "color": null,
+ "url": "https://github.com/trending?l=Myghty"
+ },
+ "nanorc": {
+ "color": "#2d004d",
+ "url": "https://github.com/trending?l=nanorc"
+ },
+ "Nasal": {
+ "color": "#1d2c4e",
+ "url": "https://github.com/trending?l=Nasal"
+ },
+ "NASL": {
+ "color": null,
+ "url": "https://github.com/trending?l=NASL"
+ },
+ "NCL": {
+ "color": "#28431f",
+ "url": "https://github.com/trending?l=NCL"
+ },
+ "Nearley": {
+ "color": "#990000",
+ "url": "https://github.com/trending?l=Nearley"
+ },
+ "Nemerle": {
+ "color": "#3d3c6e",
+ "url": "https://github.com/trending?l=Nemerle"
+ },
+ "nesC": {
+ "color": "#94B0C7",
+ "url": "https://github.com/trending?l=nesC"
+ },
+ "NetLinx": {
+ "color": "#0aa0ff",
+ "url": "https://github.com/trending?l=NetLinx"
+ },
+ "NetLinx+ERB": {
+ "color": "#747faa",
+ "url": "https://github.com/trending?l=NetLinx+ERB"
+ },
+ "NetLogo": {
+ "color": "#ff6375",
+ "url": "https://github.com/trending?l=NetLogo"
+ },
+ "NewLisp": {
+ "color": "#87AED7",
+ "url": "https://github.com/trending?l=NewLisp"
+ },
+ "Nextflow": {
+ "color": "#3ac486",
+ "url": "https://github.com/trending?l=Nextflow"
+ },
+ "Nginx": {
+ "color": "#009639",
+ "url": "https://github.com/trending?l=Nginx"
+ },
+ "Nim": {
+ "color": "#ffc200",
+ "url": "https://github.com/trending?l=Nim"
+ },
+ "Nit": {
+ "color": "#009917",
+ "url": "https://github.com/trending?l=Nit"
+ },
+ "Nix": {
+ "color": "#7e7eff",
+ "url": "https://github.com/trending?l=Nix"
+ },
+ "NMODL": {
+ "color": "#00356B",
+ "url": "https://github.com/trending?l=NMODL"
+ },
+ "Noir": {
+ "color": "#2f1f49",
+ "url": "https://github.com/trending?l=Noir"
+ },
+ "NPM Config": {
+ "color": "#cb3837",
+ "url": "https://github.com/trending?l=NPM-Config"
+ },
+ "NSIS": {
+ "color": null,
+ "url": "https://github.com/trending?l=NSIS"
+ },
+ "Nu": {
+ "color": "#c9df40",
+ "url": "https://github.com/trending?l=Nu"
+ },
+ "NumPy": {
+ "color": "#9C8AF9",
+ "url": "https://github.com/trending?l=NumPy"
+ },
+ "Nunjucks": {
+ "color": "#3d8137",
+ "url": "https://github.com/trending?l=Nunjucks"
+ },
+ "Nushell": {
+ "color": "#4E9906",
+ "url": "https://github.com/trending?l=Nushell"
+ },
+ "NWScript": {
+ "color": "#111522",
+ "url": "https://github.com/trending?l=NWScript"
+ },
+ "OASv2-json": {
+ "color": "#85ea2d",
+ "url": "https://github.com/trending?l=OASv2-json"
+ },
+ "OASv2-yaml": {
+ "color": "#85ea2d",
+ "url": "https://github.com/trending?l=OASv2-yaml"
+ },
+ "OASv3-json": {
+ "color": "#85ea2d",
+ "url": "https://github.com/trending?l=OASv3-json"
+ },
+ "OASv3-yaml": {
+ "color": "#85ea2d",
+ "url": "https://github.com/trending?l=OASv3-yaml"
+ },
+ "Oberon": {
+ "color": null,
+ "url": "https://github.com/trending?l=Oberon"
+ },
+ "Objective-C": {
+ "color": "#438eff",
+ "url": "https://github.com/trending?l=Objective-C"
+ },
+ "Objective-C++": {
+ "color": "#6866fb",
+ "url": "https://github.com/trending?l=Objective-C++"
+ },
+ "Objective-J": {
+ "color": "#ff0c5a",
+ "url": "https://github.com/trending?l=Objective-J"
+ },
+ "ObjectScript": {
+ "color": "#424893",
+ "url": "https://github.com/trending?l=ObjectScript"
+ },
+ "OCaml": {
+ "color": "#ef7a08",
+ "url": "https://github.com/trending?l=OCaml"
+ },
+ "Odin": {
+ "color": "#60AFFE",
+ "url": "https://github.com/trending?l=Odin"
+ },
+ "Omgrofl": {
+ "color": "#cabbff",
+ "url": "https://github.com/trending?l=Omgrofl"
+ },
+ "OMNeT++ MSG": {
+ "color": "#a0e0a0",
+ "url": "https://github.com/trending?l=OMNeT++-MSG"
+ },
+ "OMNeT++ NED": {
+ "color": "#08607c",
+ "url": "https://github.com/trending?l=OMNeT++-NED"
+ },
+ "ooc": {
+ "color": "#b0b77e",
+ "url": "https://github.com/trending?l=ooc"
+ },
+ "Opa": {
+ "color": null,
+ "url": "https://github.com/trending?l=Opa"
+ },
+ "Opal": {
+ "color": "#f7ede0",
+ "url": "https://github.com/trending?l=Opal"
+ },
+ "Open Policy Agent": {
+ "color": "#7d9199",
+ "url": "https://github.com/trending?l=Open-Policy-Agent"
+ },
+ "OpenAPI Specification v2": {
+ "color": "#85ea2d",
+ "url": "https://github.com/trending?l=OpenAPI-Specification-v2"
+ },
+ "OpenAPI Specification v3": {
+ "color": "#85ea2d",
+ "url": "https://github.com/trending?l=OpenAPI-Specification-v3"
+ },
+ "OpenCL": {
+ "color": "#ed2e2d",
+ "url": "https://github.com/trending?l=OpenCL"
+ },
+ "OpenEdge ABL": {
+ "color": "#5ce600",
+ "url": "https://github.com/trending?l=OpenEdge-ABL"
+ },
+ "OpenQASM": {
+ "color": "#AA70FF",
+ "url": "https://github.com/trending?l=OpenQASM"
+ },
+ "OpenRC runscript": {
+ "color": null,
+ "url": "https://github.com/trending?l=OpenRC-runscript"
+ },
+ "OpenSCAD": {
+ "color": "#e5cd45",
+ "url": "https://github.com/trending?l=OpenSCAD"
+ },
+ "Option List": {
+ "color": "#476732",
+ "url": "https://github.com/trending?l=Option-List"
+ },
+ "Org": {
+ "color": "#77aa99",
+ "url": "https://github.com/trending?l=Org"
+ },
+ "OverpassQL": {
+ "color": "#cce2aa",
+ "url": "https://github.com/trending?l=OverpassQL"
+ },
+ "Ox": {
+ "color": null,
+ "url": "https://github.com/trending?l=Ox"
+ },
+ "Oxygene": {
+ "color": "#cdd0e3",
+ "url": "https://github.com/trending?l=Oxygene"
+ },
+ "Oz": {
+ "color": "#fab738",
+ "url": "https://github.com/trending?l=Oz"
+ },
+ "P4": {
+ "color": "#7055b5",
+ "url": "https://github.com/trending?l=P4"
+ },
+ "Pact": {
+ "color": "#F7A8B8",
+ "url": "https://github.com/trending?l=Pact"
+ },
+ "Pan": {
+ "color": "#cc0000",
+ "url": "https://github.com/trending?l=Pan"
+ },
+ "Papyrus": {
+ "color": "#6600cc",
+ "url": "https://github.com/trending?l=Papyrus"
+ },
+ "Parrot": {
+ "color": "#f3ca0a",
+ "url": "https://github.com/trending?l=Parrot"
+ },
+ "Parrot Assembly": {
+ "color": null,
+ "url": "https://github.com/trending?l=Parrot-Assembly"
+ },
+ "Parrot Internal Representation": {
+ "color": null,
+ "url": "https://github.com/trending?l=Parrot-Internal-Representation"
+ },
+ "Pascal": {
+ "color": "#E3F171",
+ "url": "https://github.com/trending?l=Pascal"
+ },
+ "Pawn": {
+ "color": "#dbb284",
+ "url": "https://github.com/trending?l=Pawn"
+ },
+ "PDDL": {
+ "color": "#0d00ff",
+ "url": "https://github.com/trending?l=PDDL"
+ },
+ "PEG.js": {
+ "color": "#234d6b",
+ "url": "https://github.com/trending?l=PEG.js"
+ },
+ "Pep8": {
+ "color": "#C76F5B",
+ "url": "https://github.com/trending?l=Pep8"
+ },
+ "Perl": {
+ "color": "#0298c3",
+ "url": "https://github.com/trending?l=Perl"
+ },
+ "PHP": {
+ "color": "#4F5D95",
+ "url": "https://github.com/trending?l=PHP"
+ },
+ "PicoLisp": {
+ "color": "#6067af",
+ "url": "https://github.com/trending?l=PicoLisp"
+ },
+ "PigLatin": {
+ "color": "#fcd7de",
+ "url": "https://github.com/trending?l=PigLatin"
+ },
+ "Pike": {
+ "color": "#005390",
+ "url": "https://github.com/trending?l=Pike"
+ },
+ "Pip Requirements": {
+ "color": "#FFD343",
+ "url": "https://github.com/trending?l=Pip-Requirements"
+ },
+ "Pkl": {
+ "color": "#6b9543",
+ "url": "https://github.com/trending?l=Pkl"
+ },
+ "PlantUML": {
+ "color": "#fbbd16",
+ "url": "https://github.com/trending?l=PlantUML"
+ },
+ "PLpgSQL": {
+ "color": "#336790",
+ "url": "https://github.com/trending?l=PLpgSQL"
+ },
+ "PLSQL": {
+ "color": "#dad8d8",
+ "url": "https://github.com/trending?l=PLSQL"
+ },
+ "PogoScript": {
+ "color": "#d80074",
+ "url": "https://github.com/trending?l=PogoScript"
+ },
+ "Polar": {
+ "color": "#ae81ff",
+ "url": "https://github.com/trending?l=Polar"
+ },
+ "Pony": {
+ "color": null,
+ "url": "https://github.com/trending?l=Pony"
+ },
+ "Portugol": {
+ "color": "#f8bd00",
+ "url": "https://github.com/trending?l=Portugol"
+ },
+ "PostCSS": {
+ "color": "#dc3a0c",
+ "url": "https://github.com/trending?l=PostCSS"
+ },
+ "PostScript": {
+ "color": "#da291c",
+ "url": "https://github.com/trending?l=PostScript"
+ },
+ "POV-Ray SDL": {
+ "color": "#6bac65",
+ "url": "https://github.com/trending?l=POV-Ray-SDL"
+ },
+ "PowerBuilder": {
+ "color": "#8f0f8d",
+ "url": "https://github.com/trending?l=PowerBuilder"
+ },
+ "PowerShell": {
+ "color": "#012456",
+ "url": "https://github.com/trending?l=PowerShell"
+ },
+ "Praat": {
+ "color": "#c8506d",
+ "url": "https://github.com/trending?l=Praat"
+ },
+ "Prisma": {
+ "color": "#0c344b",
+ "url": "https://github.com/trending?l=Prisma"
+ },
+ "Processing": {
+ "color": "#0096D8",
+ "url": "https://github.com/trending?l=Processing"
+ },
+ "Procfile": {
+ "color": "#3B2F63",
+ "url": "https://github.com/trending?l=Procfile"
+ },
+ "Prolog": {
+ "color": "#74283c",
+ "url": "https://github.com/trending?l=Prolog"
+ },
+ "Promela": {
+ "color": "#de0000",
+ "url": "https://github.com/trending?l=Promela"
+ },
+ "Propeller Spin": {
+ "color": "#7fa2a7",
+ "url": "https://github.com/trending?l=Propeller-Spin"
+ },
+ "Pug": {
+ "color": "#a86454",
+ "url": "https://github.com/trending?l=Pug"
+ },
+ "Puppet": {
+ "color": "#302B6D",
+ "url": "https://github.com/trending?l=Puppet"
+ },
+ "PureBasic": {
+ "color": "#5a6986",
+ "url": "https://github.com/trending?l=PureBasic"
+ },
+ "PureScript": {
+ "color": "#1D222D",
+ "url": "https://github.com/trending?l=PureScript"
+ },
+ "Pyret": {
+ "color": "#ee1e10",
+ "url": "https://github.com/trending?l=Pyret"
+ },
+ "Python": {
+ "color": "#3572A5",
+ "url": "https://github.com/trending?l=Python"
+ },
+ "Python console": {
+ "color": "#3572A5",
+ "url": "https://github.com/trending?l=Python-console"
+ },
+ "Python traceback": {
+ "color": "#3572A5",
+ "url": "https://github.com/trending?l=Python-traceback"
+ },
+ "q": {
+ "color": "#0040cd",
+ "url": "https://github.com/trending?l=q"
+ },
+ "Q#": {
+ "color": "#fed659",
+ "url": "https://github.com/trending?l=Qsharp"
+ },
+ "QMake": {
+ "color": null,
+ "url": "https://github.com/trending?l=QMake"
+ },
+ "QML": {
+ "color": "#44a51c",
+ "url": "https://github.com/trending?l=QML"
+ },
+ "Qt Script": {
+ "color": "#00b841",
+ "url": "https://github.com/trending?l=Qt-Script"
+ },
+ "Quake": {
+ "color": "#882233",
+ "url": "https://github.com/trending?l=Quake"
+ },
+ "QuickBASIC": {
+ "color": "#008080",
+ "url": "https://github.com/trending?l=QuickBASIC"
+ },
+ "R": {
+ "color": "#198CE7",
+ "url": "https://github.com/trending?l=R"
+ },
+ "Racket": {
+ "color": "#3c5caa",
+ "url": "https://github.com/trending?l=Racket"
+ },
+ "Ragel": {
+ "color": "#9d5200",
+ "url": "https://github.com/trending?l=Ragel"
+ },
+ "Raku": {
+ "color": "#0000fb",
+ "url": "https://github.com/trending?l=Raku"
+ },
+ "RAML": {
+ "color": "#77d9fb",
+ "url": "https://github.com/trending?l=RAML"
+ },
+ "Rascal": {
+ "color": "#fffaa0",
+ "url": "https://github.com/trending?l=Rascal"
+ },
+ "RBS": {
+ "color": "#701516",
+ "url": "https://github.com/trending?l=RBS"
+ },
+ "RDoc": {
+ "color": "#701516",
+ "url": "https://github.com/trending?l=RDoc"
+ },
+ "REALbasic": {
+ "color": null,
+ "url": "https://github.com/trending?l=REALbasic"
+ },
+ "Reason": {
+ "color": "#ff5847",
+ "url": "https://github.com/trending?l=Reason"
+ },
+ "ReasonLIGO": {
+ "color": "#ff5847",
+ "url": "https://github.com/trending?l=ReasonLIGO"
+ },
+ "Rebol": {
+ "color": "#358a5b",
+ "url": "https://github.com/trending?l=Rebol"
+ },
+ "Record Jar": {
+ "color": "#0673ba",
+ "url": "https://github.com/trending?l=Record-Jar"
+ },
+ "Red": {
+ "color": "#f50000",
+ "url": "https://github.com/trending?l=Red"
+ },
+ "Redcode": {
+ "color": null,
+ "url": "https://github.com/trending?l=Redcode"
+ },
+ "Regular Expression": {
+ "color": "#009a00",
+ "url": "https://github.com/trending?l=Regular-Expression"
+ },
+ "Ren'Py": {
+ "color": "#ff7f7f",
+ "url": "https://github.com/trending?l=Ren'Py"
+ },
+ "RenderScript": {
+ "color": null,
+ "url": "https://github.com/trending?l=RenderScript"
+ },
+ "ReScript": {
+ "color": "#ed5051",
+ "url": "https://github.com/trending?l=ReScript"
+ },
+ "reStructuredText": {
+ "color": "#141414",
+ "url": "https://github.com/trending?l=reStructuredText"
+ },
+ "REXX": {
+ "color": "#d90e09",
+ "url": "https://github.com/trending?l=REXX"
+ },
+ "Rez": {
+ "color": "#FFDAB3",
+ "url": "https://github.com/trending?l=Rez"
+ },
+ "Ring": {
+ "color": "#2D54CB",
+ "url": "https://github.com/trending?l=Ring"
+ },
+ "Riot": {
+ "color": "#A71E49",
+ "url": "https://github.com/trending?l=Riot"
+ },
+ "RMarkdown": {
+ "color": "#198ce7",
+ "url": "https://github.com/trending?l=RMarkdown"
+ },
+ "RobotFramework": {
+ "color": "#00c0b5",
+ "url": "https://github.com/trending?l=RobotFramework"
+ },
+ "Roc": {
+ "color": "#7c38f5",
+ "url": "https://github.com/trending?l=Roc"
+ },
+ "Rocq Prover": {
+ "color": "#d0b68c",
+ "url": "https://github.com/trending?l=Rocq-Prover"
+ },
+ "Roff": {
+ "color": "#ecdebe",
+ "url": "https://github.com/trending?l=Roff"
+ },
+ "Roff Manpage": {
+ "color": "#ecdebe",
+ "url": "https://github.com/trending?l=Roff-Manpage"
+ },
+ "RON": {
+ "color": "#a62c00",
+ "url": "https://github.com/trending?l=RON"
+ },
+ "Rouge": {
+ "color": "#cc0088",
+ "url": "https://github.com/trending?l=Rouge"
+ },
+ "RouterOS Script": {
+ "color": "#DE3941",
+ "url": "https://github.com/trending?l=RouterOS-Script"
+ },
+ "RPC": {
+ "color": null,
+ "url": "https://github.com/trending?l=RPC"
+ },
+ "RPGLE": {
+ "color": "#2BDE21",
+ "url": "https://github.com/trending?l=RPGLE"
+ },
+ "Ruby": {
+ "color": "#701516",
+ "url": "https://github.com/trending?l=Ruby"
+ },
+ "RUNOFF": {
+ "color": "#665a4e",
+ "url": "https://github.com/trending?l=RUNOFF"
+ },
+ "Rust": {
+ "color": "#dea584",
+ "url": "https://github.com/trending?l=Rust"
+ },
+ "Sage": {
+ "color": null,
+ "url": "https://github.com/trending?l=Sage"
+ },
+ "Sail": {
+ "color": "#259dd5",
+ "url": "https://github.com/trending?l=Sail"
+ },
+ "SaltStack": {
+ "color": "#646464",
+ "url": "https://github.com/trending?l=SaltStack"
+ },
+ "SAS": {
+ "color": "#B34936",
+ "url": "https://github.com/trending?l=SAS"
+ },
+ "Sass": {
+ "color": "#a53b70",
+ "url": "https://github.com/trending?l=Sass"
+ },
+ "Scala": {
+ "color": "#c22d40",
+ "url": "https://github.com/trending?l=Scala"
+ },
+ "Scaml": {
+ "color": "#bd181a",
+ "url": "https://github.com/trending?l=Scaml"
+ },
+ "Scenic": {
+ "color": "#fdc700",
+ "url": "https://github.com/trending?l=Scenic"
+ },
+ "Scheme": {
+ "color": "#1e4aec",
+ "url": "https://github.com/trending?l=Scheme"
+ },
+ "Scilab": {
+ "color": "#ca0f21",
+ "url": "https://github.com/trending?l=Scilab"
+ },
+ "SCSS": {
+ "color": "#c6538c",
+ "url": "https://github.com/trending?l=SCSS"
+ },
+ "sed": {
+ "color": "#64b970",
+ "url": "https://github.com/trending?l=sed"
+ },
+ "Self": {
+ "color": "#0579aa",
+ "url": "https://github.com/trending?l=Self"
+ },
+ "ShaderLab": {
+ "color": "#222c37",
+ "url": "https://github.com/trending?l=ShaderLab"
+ },
+ "Shell": {
+ "color": "#89e051",
+ "url": "https://github.com/trending?l=Shell"
+ },
+ "ShellCheck Config": {
+ "color": "#cecfcb",
+ "url": "https://github.com/trending?l=ShellCheck-Config"
+ },
+ "ShellSession": {
+ "color": null,
+ "url": "https://github.com/trending?l=ShellSession"
+ },
+ "Shen": {
+ "color": "#120F14",
+ "url": "https://github.com/trending?l=Shen"
+ },
+ "Sieve": {
+ "color": null,
+ "url": "https://github.com/trending?l=Sieve"
+ },
+ "Simple File Verification": {
+ "color": "#C9BFED",
+ "url": "https://github.com/trending?l=Simple-File-Verification"
+ },
+ "Singularity": {
+ "color": "#64E6AD",
+ "url": "https://github.com/trending?l=Singularity"
+ },
+ "Slang": {
+ "color": "#1fbec9",
+ "url": "https://github.com/trending?l=Slang"
+ },
+ "Slash": {
+ "color": "#007eff",
+ "url": "https://github.com/trending?l=Slash"
+ },
+ "Slice": {
+ "color": "#003fa2",
+ "url": "https://github.com/trending?l=Slice"
+ },
+ "Slim": {
+ "color": "#2b2b2b",
+ "url": "https://github.com/trending?l=Slim"
+ },
+ "Slint": {
+ "color": "#2379F4",
+ "url": "https://github.com/trending?l=Slint"
+ },
+ "Smali": {
+ "color": null,
+ "url": "https://github.com/trending?l=Smali"
+ },
+ "Smalltalk": {
+ "color": "#596706",
+ "url": "https://github.com/trending?l=Smalltalk"
+ },
+ "Smarty": {
+ "color": "#f0c040",
+ "url": "https://github.com/trending?l=Smarty"
+ },
+ "Smithy": {
+ "color": "#c44536",
+ "url": "https://github.com/trending?l=Smithy"
+ },
+ "SmPL": {
+ "color": "#c94949",
+ "url": "https://github.com/trending?l=SmPL"
+ },
+ "SMT": {
+ "color": null,
+ "url": "https://github.com/trending?l=SMT"
+ },
+ "Snakemake": {
+ "color": "#419179",
+ "url": "https://github.com/trending?l=Snakemake"
+ },
+ "Solidity": {
+ "color": "#AA6746",
+ "url": "https://github.com/trending?l=Solidity"
+ },
+ "SourcePawn": {
+ "color": "#f69e1d",
+ "url": "https://github.com/trending?l=SourcePawn"
+ },
+ "SPARQL": {
+ "color": "#0C4597",
+ "url": "https://github.com/trending?l=SPARQL"
+ },
+ "SQF": {
+ "color": "#3F3F3F",
+ "url": "https://github.com/trending?l=SQF"
+ },
+ "SQL": {
+ "color": "#e38c00",
+ "url": "https://github.com/trending?l=SQL"
+ },
+ "SQLPL": {
+ "color": "#e38c00",
+ "url": "https://github.com/trending?l=SQLPL"
+ },
+ "Squirrel": {
+ "color": "#800000",
+ "url": "https://github.com/trending?l=Squirrel"
+ },
+ "SRecode Template": {
+ "color": "#348a34",
+ "url": "https://github.com/trending?l=SRecode-Template"
+ },
+ "Stan": {
+ "color": "#b2011d",
+ "url": "https://github.com/trending?l=Stan"
+ },
+ "Standard ML": {
+ "color": "#dc566d",
+ "url": "https://github.com/trending?l=Standard-ML"
+ },
+ "Starlark": {
+ "color": "#76d275",
+ "url": "https://github.com/trending?l=Starlark"
+ },
+ "Stata": {
+ "color": "#1a5f91",
+ "url": "https://github.com/trending?l=Stata"
+ },
+ "STL": {
+ "color": "#373b5e",
+ "url": "https://github.com/trending?l=STL"
+ },
+ "StringTemplate": {
+ "color": "#3fb34f",
+ "url": "https://github.com/trending?l=StringTemplate"
+ },
+ "Stylus": {
+ "color": "#ff6347",
+ "url": "https://github.com/trending?l=Stylus"
+ },
+ "SubRip Text": {
+ "color": "#9e0101",
+ "url": "https://github.com/trending?l=SubRip-Text"
+ },
+ "SugarSS": {
+ "color": "#2fcc9f",
+ "url": "https://github.com/trending?l=SugarSS"
+ },
+ "SuperCollider": {
+ "color": "#46390b",
+ "url": "https://github.com/trending?l=SuperCollider"
+ },
+ "Survex data": {
+ "color": "#ffcc99",
+ "url": "https://github.com/trending?l=Survex-data"
+ },
+ "Svelte": {
+ "color": "#ff3e00",
+ "url": "https://github.com/trending?l=Svelte"
+ },
+ "SVG": {
+ "color": "#ff9900",
+ "url": "https://github.com/trending?l=SVG"
+ },
+ "Sway": {
+ "color": "#00F58C",
+ "url": "https://github.com/trending?l=Sway"
+ },
+ "Sweave": {
+ "color": "#198ce7",
+ "url": "https://github.com/trending?l=Sweave"
+ },
+ "Swift": {
+ "color": "#F05138",
+ "url": "https://github.com/trending?l=Swift"
+ },
+ "SWIG": {
+ "color": null,
+ "url": "https://github.com/trending?l=SWIG"
+ },
+ "SystemVerilog": {
+ "color": "#DAE1C2",
+ "url": "https://github.com/trending?l=SystemVerilog"
+ },
+ "Tact": {
+ "color": "#48b5ff",
+ "url": "https://github.com/trending?l=Tact"
+ },
+ "Talon": {
+ "color": "#333333",
+ "url": "https://github.com/trending?l=Talon"
+ },
+ "Tcl": {
+ "color": "#e4cc98",
+ "url": "https://github.com/trending?l=Tcl"
+ },
+ "Tcsh": {
+ "color": null,
+ "url": "https://github.com/trending?l=Tcsh"
+ },
+ "templ": {
+ "color": "#66D0DD",
+ "url": "https://github.com/trending?l=templ"
+ },
+ "Terra": {
+ "color": "#00004c",
+ "url": "https://github.com/trending?l=Terra"
+ },
+ "Terraform Template": {
+ "color": "#7b42bb",
+ "url": "https://github.com/trending?l=Terraform-Template"
+ },
+ "TeX": {
+ "color": "#3D6117",
+ "url": "https://github.com/trending?l=TeX"
+ },
+ "TextGrid": {
+ "color": "#c8506d",
+ "url": "https://github.com/trending?l=TextGrid"
+ },
+ "Textile": {
+ "color": "#ffe7ac",
+ "url": "https://github.com/trending?l=Textile"
+ },
+ "TextMate Properties": {
+ "color": "#df66e4",
+ "url": "https://github.com/trending?l=TextMate-Properties"
+ },
+ "Thrift": {
+ "color": "#D12127",
+ "url": "https://github.com/trending?l=Thrift"
+ },
+ "TI Program": {
+ "color": "#A0AA87",
+ "url": "https://github.com/trending?l=TI-Program"
+ },
+ "TL-Verilog": {
+ "color": "#C40023",
+ "url": "https://github.com/trending?l=TL-Verilog"
+ },
+ "TLA": {
+ "color": "#4b0079",
+ "url": "https://github.com/trending?l=TLA"
+ },
+ "Toit": {
+ "color": "#c2c9fb",
+ "url": "https://github.com/trending?l=Toit"
+ },
+ "TOML": {
+ "color": "#9c4221",
+ "url": "https://github.com/trending?l=TOML"
+ },
+ "Tree-sitter Query": {
+ "color": "#8ea64c",
+ "url": "https://github.com/trending?l=Tree-sitter-Query"
+ },
+ "TSQL": {
+ "color": "#e38c00",
+ "url": "https://github.com/trending?l=TSQL"
+ },
+ "TSV": {
+ "color": "#237346",
+ "url": "https://github.com/trending?l=TSV"
+ },
+ "TSX": {
+ "color": "#3178c6",
+ "url": "https://github.com/trending?l=TSX"
+ },
+ "Turing": {
+ "color": "#cf142b",
+ "url": "https://github.com/trending?l=Turing"
+ },
+ "Twig": {
+ "color": "#c1d026",
+ "url": "https://github.com/trending?l=Twig"
+ },
+ "TXL": {
+ "color": "#0178b8",
+ "url": "https://github.com/trending?l=TXL"
+ },
+ "TypeScript": {
+ "color": "#3178c6",
+ "url": "https://github.com/trending?l=TypeScript"
+ },
+ "TypeSpec": {
+ "color": "#4A3665",
+ "url": "https://github.com/trending?l=TypeSpec"
+ },
+ "Typst": {
+ "color": "#239dad",
+ "url": "https://github.com/trending?l=Typst"
+ },
+ "Unified Parallel C": {
+ "color": "#4e3617",
+ "url": "https://github.com/trending?l=Unified-Parallel-C"
+ },
+ "Unity3D Asset": {
+ "color": "#222c37",
+ "url": "https://github.com/trending?l=Unity3D-Asset"
+ },
+ "Unix Assembly": {
+ "color": null,
+ "url": "https://github.com/trending?l=Unix-Assembly"
+ },
+ "Uno": {
+ "color": "#9933cc",
+ "url": "https://github.com/trending?l=Uno"
+ },
+ "UnrealScript": {
+ "color": "#a54c4d",
+ "url": "https://github.com/trending?l=UnrealScript"
+ },
+ "UrWeb": {
+ "color": "#ccccee",
+ "url": "https://github.com/trending?l=UrWeb"
+ },
+ "V": {
+ "color": "#4f87c4",
+ "url": "https://github.com/trending?l=V"
+ },
+ "Vala": {
+ "color": "#a56de2",
+ "url": "https://github.com/trending?l=Vala"
+ },
+ "Valve Data Format": {
+ "color": "#f26025",
+ "url": "https://github.com/trending?l=Valve-Data-Format"
+ },
+ "VBA": {
+ "color": "#867db1",
+ "url": "https://github.com/trending?l=VBA"
+ },
+ "VBScript": {
+ "color": "#15dcdc",
+ "url": "https://github.com/trending?l=VBScript"
+ },
+ "vCard": {
+ "color": "#ee2647",
+ "url": "https://github.com/trending?l=vCard"
+ },
+ "VCL": {
+ "color": "#148AA8",
+ "url": "https://github.com/trending?l=VCL"
+ },
+ "Velocity Template Language": {
+ "color": "#507cff",
+ "url": "https://github.com/trending?l=Velocity-Template-Language"
+ },
+ "Verilog": {
+ "color": "#b2b7f8",
+ "url": "https://github.com/trending?l=Verilog"
+ },
+ "VHDL": {
+ "color": "#adb2cb",
+ "url": "https://github.com/trending?l=VHDL"
+ },
+ "Vim Help File": {
+ "color": "#199f4b",
+ "url": "https://github.com/trending?l=Vim-Help-File"
+ },
+ "Vim Script": {
+ "color": "#199f4b",
+ "url": "https://github.com/trending?l=Vim-Script"
+ },
+ "Vim Snippet": {
+ "color": "#199f4b",
+ "url": "https://github.com/trending?l=Vim-Snippet"
+ },
+ "Visual Basic .NET": {
+ "color": "#945db7",
+ "url": "https://github.com/trending?l=Visual-Basic-.NET"
+ },
+ "Visual Basic 6.0": {
+ "color": "#2c6353",
+ "url": "https://github.com/trending?l=Visual-Basic-6.0"
+ },
+ "Volt": {
+ "color": "#1F1F1F",
+ "url": "https://github.com/trending?l=Volt"
+ },
+ "Vue": {
+ "color": "#41b883",
+ "url": "https://github.com/trending?l=Vue"
+ },
+ "Vyper": {
+ "color": "#2980b9",
+ "url": "https://github.com/trending?l=Vyper"
+ },
+ "WDL": {
+ "color": "#42f1f4",
+ "url": "https://github.com/trending?l=WDL"
+ },
+ "Web Ontology Language": {
+ "color": "#5b70bd",
+ "url": "https://github.com/trending?l=Web-Ontology-Language"
+ },
+ "WebAssembly": {
+ "color": "#04133b",
+ "url": "https://github.com/trending?l=WebAssembly"
+ },
+ "WebAssembly Interface Type": {
+ "color": "#6250e7",
+ "url": "https://github.com/trending?l=WebAssembly-Interface-Type"
+ },
+ "WebIDL": {
+ "color": null,
+ "url": "https://github.com/trending?l=WebIDL"
+ },
+ "WGSL": {
+ "color": "#1a5e9a",
+ "url": "https://github.com/trending?l=WGSL"
+ },
+ "Whiley": {
+ "color": "#d5c397",
+ "url": "https://github.com/trending?l=Whiley"
+ },
+ "Wikitext": {
+ "color": "#fc5757",
+ "url": "https://github.com/trending?l=Wikitext"
+ },
+ "Windows Registry Entries": {
+ "color": "#52d5ff",
+ "url": "https://github.com/trending?l=Windows-Registry-Entries"
+ },
+ "wisp": {
+ "color": "#7582D1",
+ "url": "https://github.com/trending?l=wisp"
+ },
+ "Witcher Script": {
+ "color": "#ff0000",
+ "url": "https://github.com/trending?l=Witcher-Script"
+ },
+ "Wollok": {
+ "color": "#a23738",
+ "url": "https://github.com/trending?l=Wollok"
+ },
+ "World of Warcraft Addon Data": {
+ "color": "#f7e43f",
+ "url": "https://github.com/trending?l=World-of-Warcraft-Addon-Data"
+ },
+ "Wren": {
+ "color": "#383838",
+ "url": "https://github.com/trending?l=Wren"
+ },
+ "X10": {
+ "color": "#4B6BEF",
+ "url": "https://github.com/trending?l=X10"
+ },
+ "xBase": {
+ "color": "#403a40",
+ "url": "https://github.com/trending?l=xBase"
+ },
+ "XC": {
+ "color": "#99DA07",
+ "url": "https://github.com/trending?l=XC"
+ },
+ "Xmake": {
+ "color": "#22a079",
+ "url": "https://github.com/trending?l=Xmake"
+ },
+ "XML": {
+ "color": "#0060ac",
+ "url": "https://github.com/trending?l=XML"
+ },
+ "XML Property List": {
+ "color": "#0060ac",
+ "url": "https://github.com/trending?l=XML-Property-List"
+ },
+ "Xojo": {
+ "color": "#81bd41",
+ "url": "https://github.com/trending?l=Xojo"
+ },
+ "Xonsh": {
+ "color": "#285EEF",
+ "url": "https://github.com/trending?l=Xonsh"
+ },
+ "XProc": {
+ "color": null,
+ "url": "https://github.com/trending?l=XProc"
+ },
+ "XQuery": {
+ "color": "#5232e7",
+ "url": "https://github.com/trending?l=XQuery"
+ },
+ "XS": {
+ "color": null,
+ "url": "https://github.com/trending?l=XS"
+ },
+ "XSLT": {
+ "color": "#EB8CEB",
+ "url": "https://github.com/trending?l=XSLT"
+ },
+ "Xtend": {
+ "color": "#24255d",
+ "url": "https://github.com/trending?l=Xtend"
+ },
+ "Yacc": {
+ "color": "#4B6C4B",
+ "url": "https://github.com/trending?l=Yacc"
+ },
+ "YAML": {
+ "color": "#cb171e",
+ "url": "https://github.com/trending?l=YAML"
+ },
+ "YARA": {
+ "color": "#220000",
+ "url": "https://github.com/trending?l=YARA"
+ },
+ "YASnippet": {
+ "color": "#32AB90",
+ "url": "https://github.com/trending?l=YASnippet"
+ },
+ "Yul": {
+ "color": "#794932",
+ "url": "https://github.com/trending?l=Yul"
+ },
+ "ZAP": {
+ "color": "#0d665e",
+ "url": "https://github.com/trending?l=ZAP"
+ },
+ "Zeek": {
+ "color": null,
+ "url": "https://github.com/trending?l=Zeek"
+ },
+ "ZenScript": {
+ "color": "#00BCD1",
+ "url": "https://github.com/trending?l=ZenScript"
+ },
+ "Zephir": {
+ "color": "#118f9e",
+ "url": "https://github.com/trending?l=Zephir"
+ },
+ "Zig": {
+ "color": "#ec915c",
+ "url": "https://github.com/trending?l=Zig"
+ },
+ "ZIL": {
+ "color": "#dc75e5",
+ "url": "https://github.com/trending?l=ZIL"
+ },
+ "Zimpl": {
+ "color": "#d67711",
+ "url": "https://github.com/trending?l=Zimpl"
+ }
+}
diff --git a/src/lib/images/github.svg b/src/lib/images/github.svg
deleted file mode 100644
index 37fa923..0000000
--- a/src/lib/images/github.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/lib/images/svelte-logo.svg b/src/lib/images/svelte-logo.svg
deleted file mode 100644
index 49492a8..0000000
--- a/src/lib/images/svelte-logo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/lib/images/svelte-welcome.png b/src/lib/images/svelte-welcome.png
deleted file mode 100644
index fe7d2d6b50ce937a0c3cecaa9a3501dfe138b7c8..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 360807
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≺X6?nE9l4;K{eWO*qO4-DNC{;@HPbr)r}BJz$JzvJkn;e^9bb9
z{vB1XM`A}T;&=}8>aY6yUXNcn7RJ@X>gyy;1Z$(KvO`4V62QW`$MuM98G%)8^!jg~
z>xu62lRLuWpFNLz;5)4JTbrxRX_UbJ@%uXhTl9t|^shybRcL`w+s_v<1<|kx&r(PU
zIPn_JdAcq
zX36{PbU0%
zQl($4O=H$d>7Y76YNoG2G3D?#fz}rP%Li^z=!>L0N=-h;f{t^;pNcaQK>+99Y7cU&
z?~#3xqKiNoEnl6QObnH%oj-ve1lsH3{q6cKg-yyY&8=l6$Gq8aNM^w7kZ346pAK?L
zpY1c1z5V6xbUrXX>w`BZ;>d7-;FG0y;2Y0#N&KD&iJ)9(0?#-9jRar&Ps}U`kIX
zKm?`iuamu4uM9en^2zS+GtRtDEJ{d*RKKxz()y#tS8Y4PKQ3Vm>8~A?E66nl3pB`Y
z53ftz_IV!kq7MT0eEPC_r|y~$-GS1OdQ)T4(I{YO?ac6
zIaPqGYspQ;$L3TB2q0w>ag`COJzSKPD-}c(aYlyGfV=-7#tT>>bK&XSWRiI9xDeo2
zOwz!-AA6K!VlVpV(oR|FKH=cmQl(XkH*Wat`y_WM<&=QcP^BO4Unsij0p=jkFHtp>
zn?AQE=AGfpv}!F8EdW*wZjIiUVj{E?bMGyWq0t0HmRV^^rz^H%rEj>dLjlbAW3-($vT05VS|aqzpU(+eF1
z&-53p6ks$5)=7qXT@JV?Kqr$xp5NPx)(FC!lKU7jc+|e0J>#QTY(*>?+9OCEjn&nB
z={9*l;J$Ze`tjMuMUWEtswG@R6g#ICi=?
zSzl|d;z&pBp+vWP%j6|uZm4tbR_#l6-Y9Lc>JOwhxbrIVzUvh{@C990h_|t*_G|OG
z@F!Lx>X4=xwHyZ)s%kpmU%akzdf!5GDKjCJqp
zhXy(-x94la%O|tpCnLo+f}5c@Z9W50$#Z=(mDdm-^HWYlpxU_lA^H~-;QD1iNvZ+!
zg$0517kpujQ@tMY1RT9fd#iksb(2-m!g7}9Wb}(?pXVF!KW(d?&BK!7hUHKJMB?&|m30|9DDaIqS3Q@QqGUq_!tf
zK=oNb+xY+J9+M^%oTggyYs@5FsvQY}O~m~vgxdY0;U|36p{c%$N`~rTi2(!Ndz>8a
z?YFK@DU^BKuLwPfp?i1zs&RqtfFrmWE*DaZo#SB%NJmKce>)R@=3$`?i7quVfifJu
zdS|&{MRvX^19Z&K|KKH%&ll1W^Io-j5Jama1r{ipHX&KD5GjY*j*b0ag569U4(}R=
zXFYr+e4o-91od*|^v}VWhwW-)%&%b_E795)?cQC2Q{VLbFsfE`aMOUPz3|Jd2#-ac
z>NV>NA*xw-@6M0aY7fpGh(YWmO}qa8EbVdqXOh+gI{gf7`F|oQL=bu=c}8r?$bM!m
zdqzV6CaxTul+@{cXWMT=_Ny2v+!9>wB6FFwORx!UP2@V5UD*)?hSV+k+(%ZMqb>-;
z$fN5vVy{GaZ5xsguo!rgg1H^?-D|cVEd9)NNjsyj=Do(?;e@e)*!thOCChhQ0tfCb
zxK*95L~lJ?D7{?)#h43=&+N7**9T#ZC7X#w1D1d|X_G0yfsMKbL25e=KV3&)n;=hv
z8|#Y>%~Edn;A=U+Vao{G*yYDjG84Fh3chX$YEc!Uoi0+_t)GNDfXPe+SH<^OBV(#4Dv(xz2e@4q|DvrRC%i$dS^}9sKv0{c+rK>0F(LG8-CADjS8qriL8vB~a_${BY-;4>=TqVV5M*
zum}4Qn5P2P@YLOgiiJ4;ACGLt6GUG~CW#1~s5r=3j;m&G`lMbJJNZ+a=zIJew|KfZ
z&`vy+1=@l~Bge(RR<>G;`ccClObWg8kyR6S$5KGS2TraZg2v@VVSjb<0Sf9CfpT?J
zU%ctiLbK1x`jzbLgNs2)?9;E+KN%cQqM)+<{_MrHQ{qP$9at%=_n5B7Pfj>+3J(vt
zzWQ1pU+?zxeWT9s{Oya)L}Pu3o)~aAL}I(M`yFnpg^b1ozJ4bR-rSACt)`1+l0vx5
zkg9BUA|yjJOH$mJ-4=3;`+yg#_rY7!dJ#7)0!{ii^T6={Ffiy{8u=u7dTqoR%9!w5
zceDXp9uvWdUG%OBXrBpvb6a6WB#4>kG9woZsk6jBdGveBkJB-@=iud?g6k2g`CYFQ
z3pk4tj_=y>5U+=E#$_%>kN2sYh5Dit_KMPJL}ZoPZ5g
zp8r_U@^?4+HTl(+S5ChdSS4`VEF{6f!%qygr
zs$-JYyBX87p!0pn`gy>$g}oDfb$!jUvL)(B=mg9mR9*Id)`wC%6=mDe$gYHs?YH}$
z=~Yw2#A*-kwXprzo&30YGTgoNM$fu2iL@E6lL9HXihtc;;860K2#Dz+>;(NCy$d4F
zM;C@qBl$4fl@-kRp~d|$G*0CG-(&U@oGGQ&Wiq@z=NuY5so$2phRSLex4nHmll+A<-6X_+a=bW6KPx7*Xwv4>)5rQ`r5Yczb+bz;%Nsk(7UpA?HLTG3jLpDD(5xe=yEJrL=~WK)a2S
z9Knh@f|s-XJ(4mLa{Cgw7w^mPlUv3)9QPyPrz55AznxwZ8s4a0ua8GRIwM>D1gjyr
zhcD>RhL!MEc>aB4=ld@MykZW(vqfyIgyJc)<}bGVmp|yU#A>hk8%lG7We5j
z{5%F3yb*A0YhNqjyZ-O2#_TXcQh`^n)!ieJe-(&1*|>jFD*w|CV1f0D2X8NIU;6;*
zeZa;sq1)m-^0L)L}
zx!70bNM;lvkXuJudQVW_mS8&$Kl$DeeX3p|OP8?Q%Zfg86v?$E^P08UAg;t0L3a3b
ziC}Kt?=t?fKDXyEhB2O-6qF}g308C(AA-lUR9of80fS>x0LfGGxxDX{|
zDqNrb!lsp%wuZ#sM@@I1a}xK|X;QB?ht~Xvp|N+=d9n*c?j-B))pZg?sH1oFP51^;
z1Y5rU@_sP(m``}RUaa;MvXZLVElqX_!WNn`zg!;jVRlJ|7@|qp4QmkxAw+%IyYJMV
znTjoaEi$8Y;qu>iN#b_`{gM<<^fh6b#H^E@ZJhK<Z&;{?-
z8tqqQ%ir?bi>M)Y$f;DM77K)2OZ?#LhWdQ~bL0NAGW!AV7Tmj-m9;8#nD4
z!STljNC9A1{)Pv5&C_Af)v%%3FI1qQhY^DL`||JlY$N6+0K`JHDQ#$cCxO=OP)PjE
z!awMQfD6|T&Iobhbpsoaa8Sx__D)26GpUb0?=D$ER_%|0DTE2yf;}vR;*?!&
zm~|BUfqNdI%BSTg=Yx<=hXhE#)vI@}O~;4PC>L3;9Y}M
zuu`eAV4zcv`@t1MxvP@t&>f8QTb4^-&YqV)Xi($eP#}fORp}~6CY4#--nE6UH;V}~
ztSCGDeS42;g6sn3`-{7BK0B%$4zD_qMoyPe+kcnuZHDOg;ffN+{2FIu&!%$K!CdM(
z)+VHnw0J!zmnP1mx`-*r4=&>sMUZ9SgkRX{l8cQDoHoEfkRLC><-av
z9nZbMb{tVh6l0G`dD~Zboter!qrb>nJpn#&Re32@o1e$y;l|cZz!&dQqh03LU1`|m
z%-?$_OCmEJelA{*2Hcw?&Ot(EH{z>yR*{*#EX*VkyER3I{Tt7jCW
z+AhUm(YE=GoM&kd#WHkGG6~-eAk`WdFHj=*AG}x&i>d$pG{*_XNN!1?z^(SBvz+|G
zglkfjo{sj4HFBKUw+L24po_*HyRddsda}>E<7l`|AD5zLrO(}hoN)o){f;qmK
zt#pcf3HkF-AZ41Qw-EB|Ixf(JjN#T=nmi&jFPBJXx?48QcVWJn=FV8%!j%$x+}2Gi
ztz2rP7iZtzeN8+rF*tUm0R!7sGX^ln