This commit accomplishes a few modifications including the elimination of `use-toast.tsx` due to redundancy. The authentication methods in `personal-accounts-server-actions.ts` were refactored to improve service integration and data handling. Additionally, UI components were updated for better readability and clarity. Cascading deletion was enabled in the `schema.sql` file for 'invited_by' reference.
48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
{
|
|
"name": "@kit/billing",
|
|
"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/*",
|
|
"./schema": "./src/schema/index.ts"
|
|
},
|
|
"peerDependencies": {
|
|
"@kit/supabase": "0.1.0",
|
|
"@kit/ui": "0.1.0",
|
|
"lucide-react": "^0.363.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "0.2.0",
|
|
"@kit/prettier-config": "0.1.0",
|
|
"@kit/supabase": "0.1.0",
|
|
"@kit/tailwind-config": "0.1.0",
|
|
"@kit/tsconfig": "0.1.0",
|
|
"@kit/ui": "0.1.0",
|
|
"lucide-react": "^0.363.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|