platform-codebase/@packages/@ui/ui-typography/package.json
Quinn Ftw 42ce56083d fix(deps): rename theme-provider to ui-theme across packages
The @lilith/theme-provider package was renamed to @lilith/ui-theme.
Update all workspace dependencies to use the correct package name.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-27 15:40:43 -08:00

29 lines
667 B
JSON

{
"name": "@lilith/ui-typography",
"version": "1.0.0",
"description": "Typography components - Heading, Text",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@lilith/ui-theme": "workspace:*",
"react": "^18.3.1",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"styled-components": "^6.0.0"
}
}