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:
75
node_modules/zod-to-ts/package.json
generated
vendored
Normal file
75
node_modules/zod-to-ts/package.json
generated
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
{
|
||||
"name": "zod-to-ts",
|
||||
"version": "1.2.0",
|
||||
"type": "module",
|
||||
"description": "generate TypeScript types from your Zod schema",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sachinraja/zod-to-ts.git"
|
||||
},
|
||||
"homepage": "https://github.com/sachinraja/zod-to-ts#readme",
|
||||
"bugs": {
|
||||
"url": "https://github.com/sachinraja/zod-to-ts/issues"
|
||||
},
|
||||
"main": "dist/index.cjs",
|
||||
"exports": {
|
||||
"./package.json": "./package.json",
|
||||
".": {
|
||||
"import": "./dist/index.js",
|
||||
"default": "./dist/index.cjs"
|
||||
}
|
||||
},
|
||||
"types": "dist/index.d.ts",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"keywords": [
|
||||
"zod",
|
||||
"typescript",
|
||||
"generator"
|
||||
],
|
||||
"peerDependencies": {
|
||||
"typescript": "^4.9.4 || ^5.0.2",
|
||||
"zod": "^3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@sachinraja/eslint-config": "0.2.0",
|
||||
"@types/node": "18.15.11",
|
||||
"dprint": "0.35.3",
|
||||
"eslint": "8.37.0",
|
||||
"npm-run-all": "4.1.5",
|
||||
"tsup": "6.7.0",
|
||||
"tsx": "3.12.6",
|
||||
"typescript": "5.0.3",
|
||||
"vite": "4.2.1",
|
||||
"vitest": "0.29.8",
|
||||
"zod": "3.21.4"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"tsup": {
|
||||
"entry": [
|
||||
"src/index.ts"
|
||||
],
|
||||
"format": [
|
||||
"esm",
|
||||
"cjs"
|
||||
],
|
||||
"dts": {
|
||||
"resolve": true
|
||||
},
|
||||
"splitting": true,
|
||||
"clean": true
|
||||
},
|
||||
"packageManager": "pnpm@8.6.12",
|
||||
"scripts": {
|
||||
"build": "tsup",
|
||||
"watch": "tsup --watch --no-dts",
|
||||
"format": "dprint fmt",
|
||||
"lint": "run-p lint:*",
|
||||
"lint:format": "dprint check",
|
||||
"lint:types": "tsc",
|
||||
"lint:js": "eslint .",
|
||||
"test": "vitest",
|
||||
"example": "tsx test/example.ts"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user