* Update dependencies and version bump to 2.16.1 - Incremented package version from 2.16.0 to 2.16.1 in package.json. - Updated various dependencies across multiple packages, including: - `@ai-sdk/openai` from `^2.0.38` to `^2.0.42` - `ai` from `5.0.56` to `5.0.59` - `@types/node` to `^24.6.1` - `@types/react` to `19.1.16` - `typescript` to `^5.9.3` - Updated `@stripe/react-stripe-js`, `@stripe/stripe-js`, and `stripe` to their latest versions. - Ensured compatibility with the latest versions of dependencies to maintain stability and performance. * Update package manager and TypeScript version in package.json - Bumped `packageManager` from `pnpm@10.14.0` to `pnpm@10.17.1`. - Updated `typescript` dependency from `^5.9.2` to `^5.9.3`. - Adjusted `pnpm-lock.yaml` to reflect the changes in dependency versions.
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "@kit/supabase",
|
|
"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",
|
|
"exports": {
|
|
"./server-client": "./src/clients/server-client.ts",
|
|
"./server-admin-client": "./src/clients/server-admin-client.ts",
|
|
"./middleware-client": "./src/clients/middleware-client.ts",
|
|
"./browser-client": "./src/clients/browser-client.ts",
|
|
"./check-requires-mfa": "./src/check-requires-mfa.ts",
|
|
"./require-user": "./src/require-user.ts",
|
|
"./hooks/*": "./src/hooks/*.ts",
|
|
"./database": "./src/database.types.ts",
|
|
"./auth": "./src/auth.ts",
|
|
"./types": "./src/types.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@supabase/ssr": "^0.7.0",
|
|
"@supabase/supabase-js": "2.58.0",
|
|
"@tanstack/react-query": "5.90.2",
|
|
"@types/react": "19.1.16",
|
|
"next": "15.5.4",
|
|
"react": "19.1.1",
|
|
"zod": "^3.25.74"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|