- Upgraded various dependencies including @supabase/supabase-js to version 2.80.0, lucide-react to version 0.553.0, and react-i18next to version 16.2.4. - Updated @types/node to version 24.10.0 and adjusted related dependencies. - Incremented pino-pretty to version 13.1.2 and updated @tailwindcss/postcss to version 4.1.17. - Refactored package.json files to ensure consistency across applications and libraries.
42 lines
1008 B
JSON
42 lines
1008 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.80.0",
|
|
"@tanstack/react-query": "5.90.5",
|
|
"@types/react": "catalog:",
|
|
"lucide-react": "^0.553.0",
|
|
"react": "19.2.0",
|
|
"react-dom": "19.2.0",
|
|
"react-i18next": "^16.2.4"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@types/node": "catalog:"
|
|
}
|
|
}
|