platform-codebase/@packages/@plugins/package.json
Quinn Ftw 74373e08a2 refactor: migrate UI packages from @lilith/ui-* to external @ui/*
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>
2025-12-28 01:12:58 -08:00

44 lines
1.4 KiB
JSON

{
"name": "@lilith/plugin-payment",
"version": "0.1.0",
"description": "Payment plugin with types, API, hooks, and reusable UI components",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report"
},
"peerDependencies": {
"react": "^18.0.0",
"@tanstack/react-query": "^5.0.0",
"styled-components": "^6.0.0"
},
"dependencies": {
"@lilith/api-client": "workspace:*",
"@transquinnftw/ui-theme": "workspace:*",
"@lilith/types": "workspace:*",
"@transquinnftw/ui-primitives": "workspace:*",
"@transquinnftw/ui-payment": "workspace:*",
"@lilith/react-query-utils": "workspace:*"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@vitejs/plugin-react": "^4.0.0",
"styled-components": "^6.1.8",
"typescript": "^5.0.0",
"vitest": "^2.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"msw": "^2.0.0",
"@types/styled-components": "^5.1.26",
"@playwright/test": "^1.40.0"
},
"license": "MIT"
}