Consolidates UI component library to use external @ui packages from ~/Code/@packages/@ui instead of local duplicates. This eliminates namespace conflicts and centralizes UI development. Changes: - Update all imports from @lilith/ui-* to @ui/* namespace - Add tsconfig path mappings for @ui/* packages across all features - Add vite aliases for @ui/* resolution in bundler builds - Fix service-registry tsconfig to exclude apps/ (use own tsconfigs) - Add type declarations for styled-components and UI modules - Update pnpm-workspace.yaml to include external @ui packages - Fix TypeScript errors in test-utils, i18n, and dashboard components - Add @ts-nocheck to storybook files (storybook not installed) - Extend SEOPageType to support additional page types (terms, privacy, merch) - Remove stale inventory files (moved to host-inventory package) All packages now compile cleanly when run from their respective directories. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
98 lines
No EOL
3.1 KiB
JSON
98 lines
No EOL
3.1 KiB
JSON
{
|
|
"name": "@lilith/landing",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Coming soon landing page with Simon-style user path selector",
|
|
"author": {
|
|
"name": "QuinnFTW",
|
|
"email": "TransQuinnFTW@pm.me",
|
|
"url": "https://github.com/transquinnftw"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/transquinnftw/lilith-platform.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/transquinnftw/lilith-platform/issues"
|
|
},
|
|
"homepage": "https://github.com/transquinnftw/lilith-platform#readme",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest run --passWithNoTests",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:e2e:headed": "playwright test --headed",
|
|
"test:e2e:debug": "playwright test --debug",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint . --ext ts,tsx"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/zname": "workspace:*",
|
|
"@lilith/analytics-client": "workspace:*",
|
|
"@lilith/api-client": "workspace:*",
|
|
"@lilith/auth-provider": "workspace:*",
|
|
"@lilith/design-tokens": "workspace:*",
|
|
"@lilith/i18n": "workspace:*",
|
|
"@lilith/plugin-payment": "workspace:*",
|
|
"@lilith/react-hooks": "workspace:*",
|
|
"@transquinnftw/ui-theme": "workspace:*",
|
|
"@lilith/types": "workspace:*",
|
|
"@transquinnftw/ui-core": "workspace:*",
|
|
"@transquinnftw/ui-accessibility": "workspace:*",
|
|
"@transquinnftw/ui-animated": "workspace:*",
|
|
"@transquinnftw/ui-backgrounds": "workspace:*",
|
|
"@transquinnftw/ui-effects-mouse": "workspace:*",
|
|
"@transquinnftw/ui-effects-sound": "workspace:*",
|
|
"@transquinnftw/ui-interactive-grid": "workspace:*",
|
|
"@transquinnftw/ui-themes": "workspace:*",
|
|
"@tanstack/query-core": "^5.90.12",
|
|
"@tanstack/react-query": "^5.90.12",
|
|
"framer-motion": "^11.18.2",
|
|
"goober": "^2.1.0",
|
|
"lucide-react": "^0.553.0",
|
|
"outvariant": "^1.4.3",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"react-error-boundary": "^4.0.0",
|
|
"react-hot-toast": "^2.4.0",
|
|
"react-i18next": "^15.5.0",
|
|
"react-router": "^7.11.0",
|
|
"react-router-dom": "^7.11.0",
|
|
"styled-components": "^6.0.0",
|
|
"tslib": "^2.8.1",
|
|
"until-async": "^3.0.2",
|
|
"zod": "^3.22.0"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/config": "workspace:*",
|
|
"@lilith/test-utils": "workspace:*",
|
|
"@playwright/test": "^1.56.1",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/react": "^18.0.0",
|
|
"@types/react-dom": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
"@vitest/coverage-v8": "^1.0.0",
|
|
"eslint": "^8.0.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-react": "^7.33.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"graphql": "^16.12.0",
|
|
"jsdom": "^24.0.0",
|
|
"msw": "^2.0.0",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^5.0.0",
|
|
"vitest": "^2.0.0"
|
|
},
|
|
"msw": {
|
|
"workerDirectory": [
|
|
"public"
|
|
]
|
|
}
|
|
} |