feat: url normalization and http(s) allowlist

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Michael Chihlas
2026-05-08 17:44:44 -04:00
parent 1e4bd8082b
commit 45adba1643
5 changed files with 483 additions and 3 deletions

View File

@@ -7,7 +7,8 @@
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
"tauri": "tauri",
"test": "vitest run"
},
"dependencies": {
"@tauri-apps/api": "^2",
@@ -23,11 +24,13 @@
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@tauri-apps/cli": "^2",
"@types/node": "^25.6.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"tailwindcss": "^4.3.0",
"typescript": "~5.8.3",
"vite": "^7.0.4"
"vite": "^7.0.4",
"vitest": "^4.1.5"
}
}