[mirotalk] - update nodeJs and dep.

This commit is contained in:
Miroslav Pejic
2023-04-25 10:18:48 +02:00
parent a703003478
commit e9f9b04aae
6 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
FROM node:16-alpine
FROM node:18-alpine
# https://hub.docker.com/_/node
WORKDIR /src
+1 -1
View File
@@ -120,7 +120,7 @@ Embedding a meeting into a service or app using an iframe.
<br/>
- You will need to have `Node.js` installed, this project has been tested with Node versions [12.X](https://nodejs.org/en/blog/release/v12.22.1/), [14.X](https://nodejs.org/en/blog/release/v14.17.5/) and [16.X](https://nodejs.org/en/blog/release/v16.15.0/).
- You will need to have `Node.js` installed, this project has been tested with Node versions [12.X](https://nodejs.org/en/blog/release/v12.22.1/), [14.X](https://nodejs.org/en/blog/release/v14.17.5/), [16.X](https://nodejs.org/en/blog/release/v16.15.1/) and [18.x](https://nodejs.org/en/blog/release/v18.16.0).
```bash
# clone this repo
+1 -1
View File
@@ -38,7 +38,7 @@ dependencies: {
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.0.4
* @version 1.0.5
*
*/
+2 -2
View File
@@ -15,10 +15,10 @@
Install the requirements (Note: Many of the installation steps require `root` or `sudo` access)
```bash
# Install NodeJS 16.X and npm
# Install NodeJS 18.X and npm
$ sudo apt update
$ sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates
$ curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
$ curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
$ sudo apt-get install -y nodejs
$ npm install -g npm@latest
```
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "mirotalk",
"version": "1.0.4",
"version": "1.0.5",
"description": "A free WebRTC browser-based video call",
"main": "server.js",
"scripts": {
@@ -33,9 +33,9 @@
"license": "AGPL-3.0",
"homepage": "https://github.com/miroslavpejic85/mirotalk",
"dependencies": {
"@sentry/integrations": "^7.48.0",
"@sentry/node": "^7.48.0",
"axios": "^1.3.5",
"@sentry/integrations": "^7.49.0",
"@sentry/node": "^7.49.0",
"axios": "^1.3.6",
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"compression": "^1.7.4",
@@ -54,6 +54,6 @@
},
"devDependencies": {
"node-fetch": "^2.6.6",
"prettier": "2.8.7"
"prettier": "2.8.8"
}
}
+1 -1
View File
@@ -15,7 +15,7 @@
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.0.4
* @version 1.0.5
*
*/