The update implemented a redirect functionality in the multi-factor authentication flow for a better user experience. It also involved a refactoring of some parts of the code, substituting direct routing paths with path configs for easier future modifications. Import statements were adjusted for better code organization and readability.
44 lines
921 B
JSON
44 lines
921 B
JSON
{
|
|
"name": "@kit/admin",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"clean": "git clean -xdf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"lint": "eslint ",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"peerDependencies": {
|
|
"@kit/ui": "0.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "0.2.0",
|
|
"@kit/prettier-config": "0.1.0",
|
|
"@kit/tailwind-config": "0.1.0",
|
|
"@kit/tsconfig": "0.1.0",
|
|
"@kit/ui": "*",
|
|
"@kit/supabase": "*",
|
|
"@supabase/supabase-js": "2.40.0",
|
|
"lucide-react": "^0.363.0"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./components/*": "./src/components/*"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|