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:
141
node_modules/shiki/package.json
generated
vendored
Normal file
141
node_modules/shiki/package.json
generated
vendored
Normal file
@@ -0,0 +1,141 @@
|
||||
{
|
||||
"name": "shiki",
|
||||
"type": "module",
|
||||
"version": "1.29.2",
|
||||
"description": "A beautiful Syntax Highlighter.",
|
||||
"author": "Pine Wu <octref@gmail.com>; Anthony Fu <anthonyfu117@hotmail.com>",
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/shikijs/shiki#readme",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/shikijs/shiki.git",
|
||||
"directory": "packages/shiki"
|
||||
},
|
||||
"bugs": "https://github.com/shikijs/shiki/issues",
|
||||
"keywords": [
|
||||
"shiki"
|
||||
],
|
||||
"sideEffects": false,
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.mts",
|
||||
"default": "./dist/index.mjs"
|
||||
},
|
||||
"./core": {
|
||||
"types": "./dist/core.d.mts",
|
||||
"unwasm": "./dist/core-unwasm.mjs",
|
||||
"default": "./dist/core.mjs"
|
||||
},
|
||||
"./wasm": {
|
||||
"unwasm": "./dist/onig.wasm",
|
||||
"types": "./dist/wasm.d.mts",
|
||||
"default": "./dist/wasm.mjs"
|
||||
},
|
||||
"./langs": {
|
||||
"types": "./dist/langs.d.mts",
|
||||
"default": "./dist/langs.mjs"
|
||||
},
|
||||
"./themes": {
|
||||
"types": "./dist/themes.d.mts",
|
||||
"default": "./dist/themes.mjs"
|
||||
},
|
||||
"./types": {
|
||||
"types": "./dist/types.d.mts",
|
||||
"default": "./dist/types.mjs"
|
||||
},
|
||||
"./theme-css-variables": {
|
||||
"types": "./dist/theme-css-variables.d.mts",
|
||||
"default": "./dist/theme-css-variables.mjs"
|
||||
},
|
||||
"./engine/javascript": {
|
||||
"types": "./dist/engine-javascript.d.mts",
|
||||
"default": "./dist/engine-javascript.mjs"
|
||||
},
|
||||
"./engine/oniguruma": {
|
||||
"types": "./dist/engine-oniguruma.d.mts",
|
||||
"default": "./dist/engine-oniguruma.mjs"
|
||||
},
|
||||
"./textmate": {
|
||||
"types": "./dist/textmate.d.mts",
|
||||
"default": "./dist/textmate.mjs"
|
||||
},
|
||||
"./bundle/full": {
|
||||
"types": "./dist/bundle-full.d.mts",
|
||||
"default": "./dist/bundle-full.mjs"
|
||||
},
|
||||
"./bundle/web": {
|
||||
"types": "./dist/bundle-web.d.mts",
|
||||
"default": "./dist/bundle-web.mjs"
|
||||
},
|
||||
"./onig.wasm": "./dist/onig.wasm",
|
||||
"./dist/*": "./dist/*",
|
||||
"./package.json": "./package.json",
|
||||
"./*": "./dist/*"
|
||||
},
|
||||
"main": "./dist/index.mjs",
|
||||
"module": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.mts",
|
||||
"typesVersions": {
|
||||
"*": {
|
||||
"core": [
|
||||
"./dist/core.d.mts"
|
||||
],
|
||||
"wasm": [
|
||||
"./dist/wasm.d.mts"
|
||||
],
|
||||
"langs": [
|
||||
"./dist/langs.d.mts"
|
||||
],
|
||||
"themes": [
|
||||
"./dist/themes.d.mts"
|
||||
],
|
||||
"bundle/full": [
|
||||
"./dist/bundle-full.d.mts"
|
||||
],
|
||||
"bundle/web": [
|
||||
"./dist/bundle-web.d.mts"
|
||||
],
|
||||
"engine/javascript": [
|
||||
"./dist/engine-javascript.d.mts"
|
||||
],
|
||||
"engine/oniguruma": [
|
||||
"./dist/engine-oniguruma.d.mts"
|
||||
],
|
||||
"textmate": [
|
||||
"./dist/textmate.d.mts"
|
||||
],
|
||||
"theme-css-variables": [
|
||||
"./dist/theme-css-variables.d.mts"
|
||||
],
|
||||
"*": [
|
||||
"./dist/*",
|
||||
"./*"
|
||||
]
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"dependencies": {
|
||||
"@shikijs/vscode-textmate": "^10.0.1",
|
||||
"@types/hast": "^3.0.4",
|
||||
"@shikijs/core": "1.29.2",
|
||||
"@shikijs/engine-javascript": "1.29.2",
|
||||
"@shikijs/engine-oniguruma": "1.29.2",
|
||||
"@shikijs/langs": "1.29.2",
|
||||
"@shikijs/themes": "1.29.2",
|
||||
"@shikijs/types": "1.29.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"rollup-plugin-copy": "^3.5.0",
|
||||
"tm-grammars": "^1.22.8",
|
||||
"tm-themes": "^1.9.8",
|
||||
"vscode-oniguruma": "1.7.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rimraf dist && NODE_OPTIONS=--max-old-space-size=4096 rollup -c",
|
||||
"dev": "rollup -cw",
|
||||
"test": "vitest",
|
||||
"test:cf": "wrangler dev test/cf.ts --port 60001"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user