Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.

This commit is contained in:
becarta
2025-05-23 12:43:00 +02:00
parent f40db0f5c9
commit a544759a3b
11127 changed files with 1647032 additions and 0 deletions

48
node_modules/regex-recursion/package.json generated vendored Normal file
View File

@@ -0,0 +1,48 @@
{
"name": "regex-recursion",
"version": "5.1.1",
"description": "Recursive matching plugin for Regex+",
"author": "Steven Levithan",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
}
},
"browser": "./dist/regex-recursion.min.js",
"types": "./types/index.d.ts",
"scripts": {
"bundle:global": "esbuild src/index.js --global-name=Regex.plugins --bundle --minify --sourcemap --outfile=dist/regex-recursion.min.js",
"types": "tsc src/index.js --rootDir src --declaration --allowJs --emitDeclarationOnly --outDir types",
"prebuild": "rm -rf dist/* types/*",
"build": "pnpm run bundle:global && pnpm run types",
"pretest": "pnpm run build",
"test": "jasmine",
"prepare": "pnpm test"
},
"files": [
"dist",
"src",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/slevithan/regex-recursion.git"
},
"keywords": [
"recursion",
"regex",
"regexp"
],
"dependencies": {
"regex": "^5.1.1",
"regex-utilities": "^2.3.0"
},
"devDependencies": {
"esbuild": "^0.24.2",
"jasmine": "^5.5.0",
"typescript": "~5.7.2"
}
}