* Add comprehensive guides for OpenAI Codex and Claude Code - Introduced `AGENTS.md` and `CLAUDE.md` files to provide detailed guidance for working with OpenAI Codex and Claude Code within the project. - Updated project architecture and common commands sections to reflect the multi-tenant SaaS application structure and core technologies. - Enhanced documentation on database operations, schema management, security guidelines, and development patterns to improve developer onboarding and project maintainability. Additionally, updated various package dependencies across the codebase to their latest versions, ensuring compatibility and performance improvements.
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.49.10",
|
|
"@tanstack/react-query": "5.80.6",
|
|
"@types/react": "19.1.6",
|
|
"lucide-react": "^0.513.0",
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0",
|
|
"react-i18next": "^15.5.2"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|