manageos 2.0.2 → 2.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.
- package/dist/Android/adb.d.ts.map +1 -1
- package/dist/Android/adb.js +0 -3
- package/dist/Android/adb.js.map +1 -1
- package/dist/Android/fastboot.js +1 -1
- package/dist/Android/fastboot.js.map +1 -1
- package/dist/PsExec/index.d.ts +11 -0
- package/dist/PsExec/index.d.ts.map +1 -0
- package/dist/PsExec/index.js +11 -0
- package/dist/PsExec/index.js.map +1 -0
- package/dist/PsExec/psexec.d.ts +39 -0
- package/dist/PsExec/psexec.d.ts.map +1 -0
- package/dist/PsExec/psexec.js +118 -0
- package/dist/PsExec/psexec.js.map +1 -0
- package/dist/PsExec/psfile.d.ts +30 -0
- package/dist/PsExec/psfile.d.ts.map +1 -0
- package/dist/PsExec/psfile.js +92 -0
- package/dist/PsExec/psfile.js.map +1 -0
- package/dist/PsExec/psgetsid.d.ts +29 -0
- package/dist/PsExec/psgetsid.d.ts.map +1 -0
- package/dist/PsExec/psgetsid.js +85 -0
- package/dist/PsExec/psgetsid.js.map +1 -0
- package/dist/PsExec/psinfo.d.ts +33 -0
- package/dist/PsExec/psinfo.d.ts.map +1 -0
- package/dist/PsExec/psinfo.js +101 -0
- package/dist/PsExec/psinfo.js.map +1 -0
- package/dist/auditpolicy.d.ts +24 -0
- package/dist/auditpolicy.d.ts.map +1 -0
- package/dist/auditpolicy.js +115 -0
- package/dist/auditpolicy.js.map +1 -0
- package/dist/camera.d.ts +34 -0
- package/dist/camera.d.ts.map +1 -0
- package/dist/camera.js +172 -0
- package/dist/camera.js.map +1 -0
- package/dist/certificates.d.ts +30 -0
- package/dist/certificates.d.ts.map +1 -0
- package/dist/certificates.js +143 -0
- package/dist/certificates.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -1
- package/dist/microphone.d.ts +39 -0
- package/dist/microphone.d.ts.map +1 -0
- package/dist/microphone.js +94 -0
- package/dist/microphone.js.map +1 -0
- package/dist/printer.d.ts +51 -0
- package/dist/printer.d.ts.map +1 -0
- package/dist/printer.js +170 -0
- package/dist/printer.js.map +1 -0
- package/dist/shell.d.ts +49 -0
- package/dist/shell.d.ts.map +1 -0
- package/dist/shell.js +212 -0
- package/dist/shell.js.map +1 -0
- package/dist/usb.d.ts +29 -0
- package/dist/usb.d.ts.map +1 -0
- package/dist/usb.js +161 -0
- package/dist/usb.js.map +1 -0
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "manageos",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "ManageOS",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -27,12 +27,15 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@types/deasync": "^0.1.5",
|
|
29
29
|
"@types/node-notifier": "^8.0.5",
|
|
30
|
+
"@types/node-webcam": "^0.8.3",
|
|
30
31
|
"@types/node-windows": "^0.1.6",
|
|
31
32
|
"@types/screenshot-desktop": "^1.15.0",
|
|
32
33
|
"@types/systeminformation": "^3.23.1",
|
|
33
34
|
"deasync": "^0.1.30",
|
|
34
35
|
"loudness": "^0.4.2",
|
|
36
|
+
"node-mic": "^1.0.1",
|
|
35
37
|
"node-notifier": "^10.0.1",
|
|
38
|
+
"node-webcam": "^0.8.2",
|
|
36
39
|
"node-windows": "^1.0.0-beta.8",
|
|
37
40
|
"screenshot-desktop": "^1.15.2",
|
|
38
41
|
"systeminformation": "^5.27.10",
|