- 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.
39 lines
952 B
JSON
39 lines
952 B
JSON
{
|
|
"name": "@kit/notifications",
|
|
"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": {
|
|
"./api": "./src/server/api.ts",
|
|
"./components": "./src/components/index.ts",
|
|
"./hooks": "./src/hooks/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/supabase": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@kit/ui": "workspace:*",
|
|
"@supabase/supabase-js": "2.55.0",
|
|
"@tanstack/react-query": "5.85.5",
|
|
"@types/react": "19.1.12",
|
|
"lucide-react": "^0.542.0",
|
|
"react": "19.1.1",
|
|
"react-dom": "19.1.1",
|
|
"react-i18next": "^15.7.3"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|