platform-codebase/@packages/@hooks/react-hooks/package.json
Lilith 89487ef53e ⬆️ Add React 19 support to internal packages
Update peerDependencies to accept React 18 or 19,
and update @types/react to ^19.0.0 for type compatibility.

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 23:55:44 -08:00

21 lines
561 B
JSON

{
"name": "@lilith/react-hooks",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Shared React hooks for the lilith platform monorepo",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "echo 'Skipping lint - react-hooks is a minimal package'",
"test": "echo 'Skipping test - react-hooks has no tests yet'"
},
"dependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"typescript": "^5.3.3"
}
}