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

35
node_modules/regex-utilities/package.json generated vendored Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "regex-utilities",
"version": "2.3.0",
"description": "Tiny helpers for processing regex syntax",
"author": "Steven Levithan",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
}
},
"types": "./types/index.d.ts",
"scripts": {
"types": "tsc src/index.js --rootDir src --declaration --allowJs --emitDeclarationOnly --outdir types",
"prebuild": "rm -rf types/*",
"build": "npm run types",
"pretest": "npm run build",
"test": "jasmine",
"prepare": "npm test"
},
"files": [
"src",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/slevithan/regex-utilities.git"
},
"devDependencies": {
"jasmine": "^5.2.0",
"typescript": "5.5.4"
}
}