electron-updator 0.1.2 → 0.1.3
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.
- package/README.md +12 -0
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -24,6 +24,18 @@
|
|
|
24
24
|
$ npm i electron-updator --save
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
<!-- GITCONTRIBUTOR_START -->
|
|
28
|
+
|
|
29
|
+
## Contributors
|
|
30
|
+
|
|
31
|
+
|[<img src="https://avatars.githubusercontent.com/u/1011681?v=4" width="100px;"/><br/><sub><b>xudafeng</b></sub>](https://github.com/xudafeng)<br/>|[<img src="https://avatars.githubusercontent.com/u/4081746?v=4" width="100px;"/><br/><sub><b>zlyi</b></sub>](https://github.com/zlyi)<br/>|
|
|
32
|
+
| :---: | :---: |
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
This project follows the git-contributor [spec](https://github.com/xudafeng/git-contributor), auto updated at `Mon Jan 30 2023 19:21:07 GMT+0800`.
|
|
36
|
+
|
|
37
|
+
<!-- GITCONTRIBUTOR_END -->
|
|
38
|
+
|
|
27
39
|
## License
|
|
28
40
|
|
|
29
41
|
The MIT License (MIT)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "electron-updator",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "electron-updator is a software updator management solution for Electron applications, It is convenient to complete full software update and dynamic update.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "sh ./build.sh",
|
|
@@ -25,10 +25,11 @@
|
|
|
25
25
|
"url": "https://github.com/electron-modules/electron-updator"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
+
"eventemitter3": "^4.0.0",
|
|
28
29
|
"lodash": "4.17.21",
|
|
29
30
|
"moment": "2.29.4",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
31
|
+
"rimraf-alt": "*",
|
|
32
|
+
"sudo-prompt-alt": "9",
|
|
32
33
|
"urllib": "2.34.1"
|
|
33
34
|
},
|
|
34
35
|
"devDependencies": {
|
|
@@ -66,4 +67,4 @@
|
|
|
66
67
|
}
|
|
67
68
|
},
|
|
68
69
|
"license": "MIT"
|
|
69
|
-
}
|
|
70
|
+
}
|