Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b55c3a0e31 | |||
| e63abf03ef | |||
| a7e7e5b0e8 | |||
| 96724d0016 | |||
| 30b2e980c0 |
@@ -31,12 +31,11 @@ jobs:
|
|||||||
uses: actions/cache@v5
|
uses: actions/cache@v5
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
node_modules/.cache
|
.astro
|
||||||
.astro/cache
|
node_modules/.vite
|
||||||
key: ${{ runner.os }}-astro-cache-${{ hashFiles('**/bun.lockb') }}-${{ github.sha }}
|
key: ${{ runner.os }}-astro-${{ hashFiles('**/*.astro', 'astro.config.mjs') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-astro-cache-${{ hashFiles('**/bun.lockb') }}-
|
${{ runner.os }}-astro-
|
||||||
${{ runner.os }}-astro-cache-
|
|
||||||
|
|
||||||
- name: Lint Code
|
- name: Lint Code
|
||||||
run: bun run lint
|
run: bun run lint
|
||||||
|
|||||||
@@ -31,12 +31,11 @@ jobs:
|
|||||||
uses: actions/cache@v5
|
uses: actions/cache@v5
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
node_modules/.cache
|
.astro
|
||||||
.astro/cache
|
node_modules/.vite
|
||||||
key: ${{ runner.os }}-astro-cache-${{ hashFiles('**/bun.lockb') }}-${{ github.sha }}
|
key: ${{ runner.os }}-astro-${{ hashFiles('**/*.astro', 'astro.config.mjs') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-astro-cache-${{ hashFiles('**/bun.lockb') }}-
|
${{ runner.os }}-astro-
|
||||||
${{ runner.os }}-astro-cache-
|
|
||||||
|
|
||||||
- name: Lint Code
|
- name: Lint Code
|
||||||
run: bun run lint
|
run: bun run lint
|
||||||
|
|||||||
@@ -33,12 +33,11 @@ jobs:
|
|||||||
uses: actions/cache@v5
|
uses: actions/cache@v5
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
node_modules/.cache
|
.astro
|
||||||
.astro/cache
|
node_modules/.vite
|
||||||
key: ${{ runner.os }}-astro-cache-${{ hashFiles('**/bun.lockb') }}-${{ github.sha }}
|
key: ${{ runner.os }}-astro-${{ hashFiles('**/*.astro', 'astro.config.mjs') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-astro-cache-${{ hashFiles('**/bun.lockb') }}-
|
${{ runner.os }}-astro-
|
||||||
${{ runner.os }}-astro-cache-
|
|
||||||
|
|
||||||
- name: Lint Code
|
- name: Lint Code
|
||||||
run: bun run lint
|
run: bun run lint
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import { defineConfig } from 'astro/config';
|
import { defineConfig } from 'astro/config';
|
||||||
|
|
||||||
import node from '@astrojs/node';
|
import node from '@astrojs/node';
|
||||||
import partytown from '@astrojs/partytown';
|
|
||||||
import react from '@astrojs/react';
|
import react from '@astrojs/react';
|
||||||
import sitemap from '@astrojs/sitemap';
|
import sitemap from '@astrojs/sitemap';
|
||||||
|
|
||||||
@@ -14,6 +13,8 @@ import { getSiteURL } from './src/support/url';
|
|||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
site: getSiteURL(),
|
site: getSiteURL(),
|
||||||
|
|
||||||
|
security: { csp: true },
|
||||||
|
|
||||||
image: {
|
image: {
|
||||||
remotePatterns: [
|
remotePatterns: [
|
||||||
{ protocol: 'https', hostname: '*.alexlebens.net' },
|
{ protocol: 'https', hostname: '*.alexlebens.net' },
|
||||||
@@ -28,7 +29,6 @@ export default defineConfig({
|
|||||||
prefetch: true,
|
prefetch: true,
|
||||||
|
|
||||||
integrations: [
|
integrations: [
|
||||||
partytown(),
|
|
||||||
react(),
|
react(),
|
||||||
sitemap(),
|
sitemap(),
|
||||||
icon({
|
icon({
|
||||||
|
|||||||
11
bun.lock
11
bun.lock
@@ -7,7 +7,6 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/check": "^0.9.7",
|
"@astrojs/check": "^0.9.7",
|
||||||
"@astrojs/node": "^10.0.0",
|
"@astrojs/node": "^10.0.0",
|
||||||
"@astrojs/partytown": "^2.1.5",
|
|
||||||
"@astrojs/react": "^5.0.0",
|
"@astrojs/react": "^5.0.0",
|
||||||
"@astrojs/rss": "^4.0.17",
|
"@astrojs/rss": "^4.0.17",
|
||||||
"@astrojs/sitemap": "^3.7.1",
|
"@astrojs/sitemap": "^3.7.1",
|
||||||
@@ -24,7 +23,7 @@
|
|||||||
"@types/unist": "^3.0.3",
|
"@types/unist": "^3.0.3",
|
||||||
"astro": "^6.0.2",
|
"astro": "^6.0.2",
|
||||||
"astro-icon": "^1.1.5",
|
"astro-icon": "^1.1.5",
|
||||||
"markdown-it": "14.1.1",
|
"markdown-it": "^14.1.1",
|
||||||
"marked": "^17.0.4",
|
"marked": "^17.0.4",
|
||||||
"marked-shiki": "^1.2.1",
|
"marked-shiki": "^1.2.1",
|
||||||
"mdast-util-to-string": "^4.0.0",
|
"mdast-util-to-string": "^4.0.0",
|
||||||
@@ -43,7 +42,7 @@
|
|||||||
"@eslint-react/eslint-plugin": "^2.13.0",
|
"@eslint-react/eslint-plugin": "^2.13.0",
|
||||||
"@tailwindcss/forms": "^0.5.11",
|
"@tailwindcss/forms": "^0.5.11",
|
||||||
"@tailwindcss/typography": "^0.5.19",
|
"@tailwindcss/typography": "^0.5.19",
|
||||||
"@types/markdown-it": "14.1.2",
|
"@types/markdown-it": "^14.1.2",
|
||||||
"eslint": "^10.0.3",
|
"eslint": "^10.0.3",
|
||||||
"eslint-config-prettier": "^10.1.8",
|
"eslint-config-prettier": "^10.1.8",
|
||||||
"eslint-plugin-astro": "^1.6.0",
|
"eslint-plugin-astro": "^1.6.0",
|
||||||
@@ -79,8 +78,6 @@
|
|||||||
|
|
||||||
"@astrojs/node": ["@astrojs/node@10.0.0", "", { "dependencies": { "@astrojs/internal-helpers": "0.8.0", "send": "1.2.1", "server-destroy": "1.0.1" }, "peerDependencies": { "astro": "6.0.2" } }, "sha512-MYz73s+U1CxdSLoYlbB9lrgA2ryi6K8ULH2rM3SBQDFbWtXuTFiBAfG8c5BHy75tsSRn2p0rc7jdFiQAzuZOyw=="],
|
"@astrojs/node": ["@astrojs/node@10.0.0", "", { "dependencies": { "@astrojs/internal-helpers": "0.8.0", "send": "1.2.1", "server-destroy": "1.0.1" }, "peerDependencies": { "astro": "6.0.2" } }, "sha512-MYz73s+U1CxdSLoYlbB9lrgA2ryi6K8ULH2rM3SBQDFbWtXuTFiBAfG8c5BHy75tsSRn2p0rc7jdFiQAzuZOyw=="],
|
||||||
|
|
||||||
"@astrojs/partytown": ["@astrojs/partytown@2.1.5", "", { "dependencies": { "@qwik.dev/partytown": "0.11.2", "mrmime": "2.0.1" } }, "sha512-Uo2Uqmvjh/5w08wGoVAspdj14hUoE28uQH8SkzaBMw9bTBNIviEkPi3VkJi+tj1ZYAY9oX7OSkRDJ48QRtMhlw=="],
|
|
||||||
|
|
||||||
"@astrojs/prism": ["@astrojs/prism@4.0.0", "", { "dependencies": { "prismjs": "1.30.0" } }, "sha512-NndtNPpxaGinRpRytljGBvYHpTOwHycSZ/c+lQi5cHvkqqrHKWdkPEhImlODBNmbuB+vyQUNUDXyjzt66CihJg=="],
|
"@astrojs/prism": ["@astrojs/prism@4.0.0", "", { "dependencies": { "prismjs": "1.30.0" } }, "sha512-NndtNPpxaGinRpRytljGBvYHpTOwHycSZ/c+lQi5cHvkqqrHKWdkPEhImlODBNmbuB+vyQUNUDXyjzt66CihJg=="],
|
||||||
|
|
||||||
"@astrojs/react": ["@astrojs/react@5.0.0", "", { "dependencies": { "@astrojs/internal-helpers": "0.8.0", "@vitejs/plugin-react": "5.1.4", "devalue": "5.6.3", "ultrahtml": "1.6.0", "vite": "7.3.1" }, "peerDependencies": { "@types/react": "19.2.14", "@types/react-dom": "19.1.7", "react": "19.2.4", "react-dom": "19.2.4" } }, "sha512-OuM+0QFsoPkvv8ZB57kVLxKOqvR+84GR/Em9lh/tAL4fV4CnpBPDxc++0vd1CipH4o99Is7GribuTHFy3doF6g=="],
|
"@astrojs/react": ["@astrojs/react@5.0.0", "", { "dependencies": { "@astrojs/internal-helpers": "0.8.0", "@vitejs/plugin-react": "5.1.4", "devalue": "5.6.3", "ultrahtml": "1.6.0", "vite": "7.3.1" }, "peerDependencies": { "@types/react": "19.2.14", "@types/react-dom": "19.1.7", "react": "19.2.4", "react-dom": "19.2.4" } }, "sha512-OuM+0QFsoPkvv8ZB57kVLxKOqvR+84GR/Em9lh/tAL4fV4CnpBPDxc++0vd1CipH4o99Is7GribuTHFy3doF6g=="],
|
||||||
@@ -557,8 +554,6 @@
|
|||||||
|
|
||||||
"@playform/pipe": ["@playform/pipe@0.1.4", "", { "dependencies": { "@types/node": "25.0.3", "deepmerge-ts": "7.1.5", "fast-glob": "3.3.3" } }, "sha512-SM3iJ5VHA61NsYMrtvk8DAZwkrpPtBCiJnfWjj1iX6Ke/hnHLqVjTmkXG087UMOa9Z+3J/zUoAkzf3Al6tiS8A=="],
|
"@playform/pipe": ["@playform/pipe@0.1.4", "", { "dependencies": { "@types/node": "25.0.3", "deepmerge-ts": "7.1.5", "fast-glob": "3.3.3" } }, "sha512-SM3iJ5VHA61NsYMrtvk8DAZwkrpPtBCiJnfWjj1iX6Ke/hnHLqVjTmkXG087UMOa9Z+3J/zUoAkzf3Al6tiS8A=="],
|
||||||
|
|
||||||
"@qwik.dev/partytown": ["@qwik.dev/partytown@0.11.2", "", { "dependencies": { "dotenv": "16.6.1" }, "bin": { "partytown": "bin/partytown.cjs" } }, "sha512-795y49CqBiKiwKAD+QBZlzlqEK275hVcazZ7wBPSfgC23L+vWuA7PJmMpgxojOucZHzYi5rAAQ+IP1I3BKVZxw=="],
|
|
||||||
|
|
||||||
"@rolldown/pluginutils": ["@rolldown/pluginutils@1.0.0-rc.3", "", {}, "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q=="],
|
"@rolldown/pluginutils": ["@rolldown/pluginutils@1.0.0-rc.3", "", {}, "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q=="],
|
||||||
|
|
||||||
"@rollup/plugin-alias": ["@rollup/plugin-alias@3.1.9", "", { "dependencies": { "slash": "3.0.0" }, "peerDependencies": { "rollup": "2.80.0" } }, "sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw=="],
|
"@rollup/plugin-alias": ["@rollup/plugin-alias@3.1.9", "", { "dependencies": { "slash": "3.0.0" }, "peerDependencies": { "rollup": "2.80.0" } }, "sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw=="],
|
||||||
@@ -1093,8 +1088,6 @@
|
|||||||
|
|
||||||
"dot-case": ["dot-case@3.0.4", "", { "dependencies": { "no-case": "3.0.4", "tslib": "2.8.1" } }, "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w=="],
|
"dot-case": ["dot-case@3.0.4", "", { "dependencies": { "no-case": "3.0.4", "tslib": "2.8.1" } }, "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w=="],
|
||||||
|
|
||||||
"dotenv": ["dotenv@16.6.1", "", {}, "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow=="],
|
|
||||||
|
|
||||||
"dropzone": ["dropzone@6.0.0-beta.2", "", { "dependencies": { "@swc/helpers": "0.2.14", "just-extend": "5.1.1" } }, "sha512-k44yLuFFhRk53M8zP71FaaNzJYIzr99SKmpbO/oZKNslDjNXQsBTdfLs+iONd0U0L94zzlFzRnFdqbLcs7h9fQ=="],
|
"dropzone": ["dropzone@6.0.0-beta.2", "", { "dependencies": { "@swc/helpers": "0.2.14", "just-extend": "5.1.1" } }, "sha512-k44yLuFFhRk53M8zP71FaaNzJYIzr99SKmpbO/oZKNslDjNXQsBTdfLs+iONd0U0L94zzlFzRnFdqbLcs7h9fQ=="],
|
||||||
|
|
||||||
"dset": ["dset@3.1.4", "", {}, "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA=="],
|
"dset": ["dset@3.1.4", "", {}, "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA=="],
|
||||||
|
|||||||
101
package.json
101
package.json
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "site-profile",
|
"name": "site-profile",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "3.0.0",
|
"version": "3.1.0",
|
||||||
"homepage": "https://www.alexlebens.dev",
|
"homepage": "https://www.alexlebens.dev",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://gitea.alexlebens.dev/alexlebens/site-profile/issues",
|
"url": "https://gitea.alexlebens.dev/alexlebens/site-profile/issues",
|
||||||
@@ -27,57 +27,56 @@
|
|||||||
"lint:fix": "eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\""
|
"lint:fix": "eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\""
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/check": "0.9.7",
|
"@astrojs/check": "^0.9.7",
|
||||||
"@astrojs/node": "10.0.0",
|
"@astrojs/node": "^10.0.0",
|
||||||
"@astrojs/partytown": "2.1.5",
|
"@astrojs/react": "^5.0.0",
|
||||||
"@astrojs/react": "5.0.0",
|
"@astrojs/rss": "^4.0.17",
|
||||||
"@astrojs/rss": "4.0.17",
|
"@astrojs/sitemap": "^3.7.1",
|
||||||
"@astrojs/sitemap": "3.7.1",
|
"@directus/sdk": "^21.2.0",
|
||||||
"@directus/sdk": "21.2.0",
|
"@giscus/react": "^3.1.0",
|
||||||
"@giscus/react": "3.1.0",
|
"@iconify-json/mdi": "^1.2.3",
|
||||||
"@iconify-json/mdi": "1.2.3",
|
"@iconify-json/pajamas": "^1.2.15",
|
||||||
"@iconify-json/pajamas": "1.2.15",
|
"@iconify-json/simple-icons": "^1.2.73",
|
||||||
"@iconify-json/simple-icons": "1.2.73",
|
"@playform/compress": "^0.2.1",
|
||||||
"@playform/compress": "0.2.1",
|
"@swup/astro": "^1.8.0",
|
||||||
"@swup/astro": "1.8.0",
|
"@tailwindcss/postcss": "^4.2.1",
|
||||||
"@tailwindcss/postcss": "4.2.1",
|
"@tailwindcss/vite": "^4.2.1",
|
||||||
"@tailwindcss/vite": "4.2.1",
|
"@types/react": "^19.2.14",
|
||||||
"@types/react": "19.2.14",
|
"@types/unist": "^3.0.3",
|
||||||
"@types/unist": "3.0.3",
|
"astro": "^6.0.2",
|
||||||
"astro": "6.0.2",
|
"astro-icon": "^1.1.5",
|
||||||
"astro-icon": "1.1.5",
|
"markdown-it": "^14.1.1",
|
||||||
"markdown-it": "14.1.1",
|
"marked": "^17.0.4",
|
||||||
"marked": "17.0.4",
|
"marked-shiki": "^1.2.1",
|
||||||
"marked-shiki": "1.2.1",
|
"mdast-util-to-string": "^4.0.0",
|
||||||
"mdast-util-to-string": "4.0.0",
|
"photoswipe": "^5.4.4",
|
||||||
"photoswipe": "5.4.4",
|
"preline": "^4.1.2",
|
||||||
"preline": "4.1.2",
|
"react": "^19.2.4",
|
||||||
"react": "19.2.4",
|
"react-dom": "^19.2.4",
|
||||||
"react-dom": "19.2.4",
|
"reading-time": "^1.5.0",
|
||||||
"reading-time": "1.5.0",
|
"sharp": "^0.34.5",
|
||||||
"sharp": "0.34.5",
|
"sharp-ico": "^0.1.5",
|
||||||
"sharp-ico": "0.1.5",
|
"shiki": "^4.0.2",
|
||||||
"shiki": "4.0.2",
|
"tailwindcss": "^4.2.1",
|
||||||
"tailwindcss": "4.2.1",
|
"ultrahtml": "^1.6.0"
|
||||||
"ultrahtml": "1.6.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint-react/eslint-plugin": "2.13.0",
|
"@eslint-react/eslint-plugin": "^2.13.0",
|
||||||
"@tailwindcss/forms": "0.5.11",
|
"@tailwindcss/forms": "^0.5.11",
|
||||||
"@tailwindcss/typography": "0.5.19",
|
"@tailwindcss/typography": "^0.5.19",
|
||||||
"@types/markdown-it": "14.1.2",
|
"@types/markdown-it": "^14.1.2",
|
||||||
"eslint": "10.0.3",
|
"eslint": "^10.0.3",
|
||||||
"eslint-config-prettier": "10.1.8",
|
"eslint-config-prettier": "^10.1.8",
|
||||||
"eslint-plugin-astro": "1.6.0",
|
"eslint-plugin-astro": "^1.6.0",
|
||||||
"eslint-plugin-format": "2.0.1",
|
"eslint-plugin-format": "^2.0.1",
|
||||||
"eslint-plugin-react": "7.37.5",
|
"eslint-plugin-react": "^7.37.5",
|
||||||
"eslint-plugin-react-hooks": "7.0.1",
|
"eslint-plugin-react-hooks": "^7.0.1",
|
||||||
"eslint-plugin-react-refresh": "0.5.2",
|
"eslint-plugin-react-refresh": "^0.5.2",
|
||||||
"prettier": "3.8.1",
|
"prettier": "^3.8.1",
|
||||||
"prettier-plugin-astro": "0.14.1",
|
"prettier-plugin-astro": "^0.14.1",
|
||||||
"prettier-plugin-tailwindcss": "0.7.2",
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
||||||
"timeago.js": "4.0.2",
|
"timeago.js": "^4.0.2",
|
||||||
"typescript": "5.9.3",
|
"typescript": "^5.9.3",
|
||||||
"typescript-eslint": "8.57.0"
|
"typescript-eslint": "^8.57.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user