- Upgraded `@types/react` to `19.1.12` and `@types/react-dom` to `19.1.9` for improved type definitions. - Bumped `react-i18next` to `^15.7.3` for localization fixes. - Updated `@manypkg/cli` to `^0.25.1` for dependency management improvements. - Incremented `@sentry/nextjs` to `^10.8.0` and `stripe` to `^18.5.0` to incorporate recent enhancements. - Adjusted `ai` to `5.0.28` and `@ai-sdk/openai` to `^2.0.23` for AI-related updates. - Introduced sorting improvements and code examples in `DataTable` for server-side and client-side capabilities.
59 lines
1.7 KiB
JSON
59 lines
1.7 KiB
JSON
{
|
|
"name": "@kit/accounts",
|
|
"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": {
|
|
"./personal-account-dropdown": "./src/components/personal-account-dropdown.tsx",
|
|
"./account-selector": "./src/components/account-selector.tsx",
|
|
"./personal-account-settings": "./src/components/personal-account-settings/index.ts",
|
|
"./components": "./src/components/index.ts",
|
|
"./hooks/*": "./src/hooks/*.ts",
|
|
"./api": "./src/server/api.ts"
|
|
},
|
|
"dependencies": {
|
|
"nanoid": "^5.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^5.2.1",
|
|
"@kit/billing-gateway": "workspace:*",
|
|
"@kit/email-templates": "workspace:*",
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/mailers": "workspace:*",
|
|
"@kit/monitoring": "workspace:*",
|
|
"@kit/next": "workspace:*",
|
|
"@kit/otp": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/shared": "workspace:*",
|
|
"@kit/supabase": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@kit/ui": "workspace:*",
|
|
"@radix-ui/react-icons": "^1.3.2",
|
|
"@supabase/supabase-js": "2.55.0",
|
|
"@tanstack/react-query": "5.85.5",
|
|
"@types/react": "19.1.12",
|
|
"@types/react-dom": "19.1.9",
|
|
"lucide-react": "^0.542.0",
|
|
"next": "15.5.2",
|
|
"next-themes": "0.4.6",
|
|
"react": "19.1.1",
|
|
"react-dom": "19.1.1",
|
|
"react-hook-form": "^7.62.0",
|
|
"react-i18next": "^15.7.3",
|
|
"zod": "^3.25.74"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|