Skip to content

Commit

Permalink
Merge pull request #11 from jackhatton/semver-fix
Browse files Browse the repository at this point in the history
Changed the > to ^ in package.json peerDependencies
  • Loading branch information
lukasbach authored May 18, 2024
2 parents 70ab434 + 47af64e commit 36625e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ink-form",
"type": "module",
"version": "2.0.0",
"version": "2.0.1",
"description": "Complex user-friendly form component for React Ink",
"main": "lib/index.js",
"exports": "./lib/index.js",
Expand Down Expand Up @@ -45,11 +45,11 @@
"prettier:write": "prettier --write ."
},
"peerDependencies": {
"ink": ">4",
"react": ">17"
"ink": "^4",
"react": "^18"
},
"dependencies": {
"ink-select-input": "^5.0.0",
"ink-text-input": "^5.0.1"
}
}
}

0 comments on commit 36625e5

Please sign in to comment.