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>
30 lines
678 B
JSON
30 lines
678 B
JSON
{
|
|
"name": "@lilith/wizard-provider",
|
|
"version": "1.0.0",
|
|
"description": "Reusable multi-step wizard/onboarding system following Tier 1 Provider Pattern",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"private": true,
|
|
"sideEffects": false,
|
|
"keywords": [
|
|
"wizard",
|
|
"onboarding",
|
|
"multi-step",
|
|
"form",
|
|
"react",
|
|
"provider"
|
|
],
|
|
"peerDependencies": {
|
|
"react": "^18.0.0 || ^19.0.0",
|
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
"styled-components": "^6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit"
|
|
}
|
|
}
|