This commit refactors the i18n settings in `i18n.settings.ts` to improve language handling. In addition, it updates the `pnpm-lock.yaml` file to upgrade the lockfile version and several package dependencies. Most notably, it integrates `tailwind-merge` and `@tanstack/react-table` into various packages.
74 lines
1.9 KiB
JSON
74 lines
1.9 KiB
JSON
{
|
|
"name": "@kit/billing-gateway",
|
|
"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": {
|
|
".": "./src/index.ts",
|
|
"./components": "./src/components/index.ts",
|
|
"./checkout": "./src/components/embedded-checkout.tsx",
|
|
"./marketing": "./src/components/marketing.tsx"
|
|
},
|
|
"peerDependencies": {
|
|
"@hookform/resolvers": "3.3.4",
|
|
"@kit/billing": "0.1.0",
|
|
"@kit/shared": "^0.1.0",
|
|
"@kit/stripe": "0.1.0",
|
|
"@kit/supabase": "^0.1.0",
|
|
"@kit/ui": "0.1.0",
|
|
"@supabase/supabase-js": "^2.42.0",
|
|
"date-fns": "^3.6.0",
|
|
"lucide-react": "^0.368.0",
|
|
"next": "^14.1.4",
|
|
"react": "^18.2.0",
|
|
"react-hook-form": "^7.51.2",
|
|
"react-i18next": "^14.1.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^3.3.4",
|
|
"@kit/billing": "workspace:^",
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/lemon-squeezy": "workspace:^",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/shared": "workspace:^",
|
|
"@kit/stripe": "workspace:^",
|
|
"@kit/supabase": "workspace:^",
|
|
"@kit/tailwind-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@kit/ui": "workspace:^",
|
|
"@supabase/supabase-js": "^2.42.5",
|
|
"@types/react": "^18.2.79",
|
|
"date-fns": "^3.6.0",
|
|
"lucide-react": "^0.368.0",
|
|
"next": "14.3.0-canary.7",
|
|
"react": "18.2.0",
|
|
"react-hook-form": "^7.51.3",
|
|
"react-i18next": "^14.1.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/react-table": "^8.16.0",
|
|
"tailwind-merge": "^2.2.2"
|
|
}
|
|
} |