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:
48
node_modules/regex-recursion/package.json
generated
vendored
Normal file
48
node_modules/regex-recursion/package.json
generated
vendored
Normal 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"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user