react-jssip-kit 0.1.3 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -8,7 +8,7 @@ React provider and hooks that wrap [JsSIP](https://jssip.net/) so you can manage
8
8
  npm install react-jssip-kit jssip
9
9
  ```
10
10
 
11
- Peer deps: `react@^18` and `react-dom@^18`.
11
+ Peer deps: `react >=18 <20` and `react-dom >=18 <20`.
12
12
 
13
13
  ## Quick start
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-jssip-kit",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "private": false,
5
5
  "description": "React hooks and provider around JsSIP client",
6
6
  "type": "module",
@@ -49,8 +49,8 @@
49
49
  "jssip": "^3.10.1"
50
50
  },
51
51
  "peerDependencies": {
52
- "react": "^18.0.0",
53
- "react-dom": "^18.0.0"
52
+ "react": ">=18 <20",
53
+ "react-dom": ">=18 <20"
54
54
  },
55
55
  "devDependencies": {
56
56
  "react": "^18.2.0",