mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 09:01:09 +02:00
Restructure the context app (formerly basetext) to follow the monorepo pattern with proper workspace configuration. Changes: - Move app files to apps/context/apps/mobile/ - Rename package to @context/mobile - Update bundle ID to com.manacore.context - Create pnpm-workspace.yaml for project workspace - Add dev scripts to root package.json - Update CLAUDE.md with project documentation The app structure is prepared for future web/backend additions. Note: Existing TypeScript errors in the original codebase are preserved. These should be fixed in a follow-up PR. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"name": "@worldream/web",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"prepare": "svelte-kit sync || echo ''",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"type-check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-node": "^5.2.12",
|
|
"@sveltejs/kit": "^2.22.0",
|
|
"@sveltejs/vite-plugin-svelte": "^6.0.0",
|
|
"@tailwindcss/forms": "^0.5.9",
|
|
"@tailwindcss/typography": "^0.5.15",
|
|
"@tailwindcss/vite": "^4.0.0",
|
|
"svelte": "^5.0.0",
|
|
"svelte-check": "^4.0.0",
|
|
"tailwindcss": "^4.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vite": "^7.0.4"
|
|
},
|
|
"dependencies": {
|
|
"@google/generative-ai": "^0.24.1",
|
|
"@manacore/shared-auth": "workspace:*",
|
|
"@manacore/shared-auth-ui": "workspace:*",
|
|
"@manacore/shared-branding": "workspace:*",
|
|
"@manacore/shared-i18n": "workspace:*",
|
|
"@manacore/shared-theme": "workspace:*",
|
|
"@manacore/shared-utils": "workspace:*",
|
|
"@paralleldrive/cuid2": "^3.0.4",
|
|
"@supabase/ssr": "^0.7.0",
|
|
"@supabase/supabase-js": "^2.56.1",
|
|
"@worldream/types": "workspace:*",
|
|
"marked": "^16.2.1",
|
|
"openai": "^5.16.0",
|
|
"replicate": "^1.1.0"
|
|
}
|
|
}
|