Compare commits

...

2 commits

Author SHA1 Message Date
c1e193a3bb fix: 7a039643 build errors 2026-04-28 12:27:24 +01:00
7a0396438a chore: update packages
also fix broken analytics
2026-04-28 12:21:50 +01:00
5 changed files with 1241 additions and 1071 deletions

View file

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
@ -52,7 +52,7 @@
} }
</script> </script>
<script defer src="https://analytics.trafficlunar.net/script.js" data-website-id="b10a9cc5-2b98-4ea3-bcaa-49e6f99d31ac"></script> <script defer src="https://analytics.trafficlunar.net/script.js" data-website-id="711a82ea-46d2-4d7f-8d40-00fe8cfd1f28"></script>
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>

View file

@ -26,41 +26,41 @@
"@radix-ui/react-toggle": "^1.1.10", "@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11", "@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8", "@radix-ui/react-tooltip": "^1.2.8",
"@uiw/react-color": "^2.9.5", "@uiw/react-color": "^2.10.1",
"@use-gesture/react": "^10.3.1", "@use-gesture/react": "^10.3.1",
"class-variance-authority": "^0.7.1", "class-variance-authority": "^0.7.1",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"cmdk": "1.1.1", "cmdk": "1.1.1",
"embla-carousel-react": "^8.6.0", "embla-carousel-react": "^8.6.0",
"lucide-react": "^0.575.0", "lucide-react": "^1.11.0",
"nbtify": "^2.2.0", "nbtify": "^2.2.0",
"pako": "^2.1.0", "pako": "^2.1.0",
"pixi.js": "^8.16.0", "pixi.js": "^8.18.1",
"react": "^19.2.4", "react": "^19.2.5",
"react-device-detect": "^2.2.3", "react-device-detect": "^2.2.3",
"react-dom": "^19.2.4", "react-dom": "^19.2.5",
"react-dropzone": "^15.0.0", "react-dropzone": "^15.0.0",
"react-router": "^7.13.1", "react-router": "^7.14.2",
"tailwind-merge": "^3.5.0" "tailwind-merge": "^3.5.0"
}, },
"devDependencies": { "devDependencies": {
"@eslint/js": "^10.0.1", "@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.2.1", "@tailwindcss/postcss": "^4.2.4",
"@types/node": "^25.3.3", "@types/node": "^25.6.0",
"@types/pako": "^2.0.4", "@types/pako": "^2.0.4",
"@types/react": "^19.2.14", "@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3", "@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4", "@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.0.2", "eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.0.1", "eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2", "eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0", "globals": "^17.5.0",
"postcss": "^8.5.6", "postcss": "^8.5.12",
"tailwindcss": "^4.2.1", "tailwindcss": "^4.2.4",
"tw-animate-css": "^1.4.0", "tw-animate-css": "^1.4.0",
"typescript": "~5.9.3", "typescript": "~6.0.3",
"typescript-eslint": "^8.56.1", "typescript-eslint": "^8.59.1",
"vite": "^7.3.1", "vite": "^8.0.10",
"vite-plugin-svgr": "^4.5.0" "vite-plugin-svgr": "^5.2.0"
} }
} }

File diff suppressed because it is too large Load diff

View file

@ -22,7 +22,6 @@
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true, "noUncheckedSideEffectImports": true,
"baseUrl": ".",
"paths": { "paths": {
"@/*": [ "@/*": [
"./src/*" "./src/*"

View file

@ -5,7 +5,6 @@
{ "path": "./tsconfig.node.json" } { "path": "./tsconfig.node.json" }
], ],
"compilerOptions": { "compilerOptions": {
"baseUrl": ".",
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": ["./src/*"]
} }