* Update AGENTS.md and CLAUDE.md for improved clarity and structure * Added MCP Server * Added missing triggers to tables that should have used them * Updated all dependencies * Fixed rare bug in React present in the Admin layout which prevents navigating to pages (sometimes...)
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"name": "@kit/auth",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"clean": "git clean -xdf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"lint": "eslint .",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"exports": {
|
|
"./sign-in": "./src/sign-in.ts",
|
|
"./sign-up": "./src/sign-up.ts",
|
|
"./password-reset": "./src/password-reset.ts",
|
|
"./shared": "./src/shared.ts",
|
|
"./mfa": "./src/mfa.ts",
|
|
"./captcha/client": "./src/captcha/client/index.ts",
|
|
"./captcha/server": "./src/captcha/server/index.ts",
|
|
"./resend-email-link": "./src/components/resend-auth-link-form.tsx",
|
|
"./oauth-provider-logo-image": "./src/components/oauth-provider-logo-image.tsx"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^5.2.2",
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/shared": "workspace:*",
|
|
"@kit/supabase": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@kit/ui": "workspace:*",
|
|
"@marsidev/react-turnstile": "^1.3.1",
|
|
"@radix-ui/react-icons": "^1.3.2",
|
|
"@supabase/supabase-js": "2.57.4",
|
|
"@tanstack/react-query": "5.89.0",
|
|
"@types/react": "19.1.13",
|
|
"lucide-react": "^0.544.0",
|
|
"next": "15.5.3",
|
|
"react-hook-form": "^7.62.0",
|
|
"react-i18next": "^15.7.3",
|
|
"sonner": "^2.0.7",
|
|
"zod": "^3.25.74"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|