code-poltergeist-system-monitor 1.0.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of code-poltergeist-system-monitor might be problematic. Click here for more details.

Files changed (33) hide show
  1. package/index.js +74 -0
  2. package/package.json +21 -0
  3. package/te/node_modules/.package-lock.json +44 -0
  4. package/te/node_modules/code-poltergeist-system-monitor/index.js +74 -0
  5. package/te/node_modules/code-poltergeist-system-monitor/package.json +21 -0
  6. package/te/node_modules/systeminformation/LICENSE +20 -0
  7. package/te/node_modules/systeminformation/README.md +1116 -0
  8. package/te/node_modules/systeminformation/lib/audio.js +222 -0
  9. package/te/node_modules/systeminformation/lib/battery.js +311 -0
  10. package/te/node_modules/systeminformation/lib/bluetooth.js +231 -0
  11. package/te/node_modules/systeminformation/lib/cli.js +91 -0
  12. package/te/node_modules/systeminformation/lib/cpu.js +1834 -0
  13. package/te/node_modules/systeminformation/lib/docker.js +758 -0
  14. package/te/node_modules/systeminformation/lib/dockerSocket.js +327 -0
  15. package/te/node_modules/systeminformation/lib/filesystem.js +1510 -0
  16. package/te/node_modules/systeminformation/lib/graphics.js +1125 -0
  17. package/te/node_modules/systeminformation/lib/index.d.ts +1041 -0
  18. package/te/node_modules/systeminformation/lib/index.js +504 -0
  19. package/te/node_modules/systeminformation/lib/internet.js +237 -0
  20. package/te/node_modules/systeminformation/lib/memory.js +575 -0
  21. package/te/node_modules/systeminformation/lib/network.js +1783 -0
  22. package/te/node_modules/systeminformation/lib/osinfo.js +1179 -0
  23. package/te/node_modules/systeminformation/lib/printer.js +210 -0
  24. package/te/node_modules/systeminformation/lib/processes.js +1296 -0
  25. package/te/node_modules/systeminformation/lib/system.js +742 -0
  26. package/te/node_modules/systeminformation/lib/usb.js +279 -0
  27. package/te/node_modules/systeminformation/lib/users.js +363 -0
  28. package/te/node_modules/systeminformation/lib/util.js +1373 -0
  29. package/te/node_modules/systeminformation/lib/virtualbox.js +107 -0
  30. package/te/node_modules/systeminformation/lib/wifi.js +834 -0
  31. package/te/node_modules/systeminformation/package.json +99 -0
  32. package/te/package-lock.json +52 -0
  33. package/te/package.json +15 -0
@@ -0,0 +1,99 @@
1
+ {
2
+ "name": "systeminformation",
3
+ "version": "5.23.5",
4
+ "description": "Advanced, lightweight system and OS information library",
5
+ "license": "MIT",
6
+ "author": "Sebastian Hildebrandt <hildebrandt@plus-innovations.com> (https://plus-innovations.com)",
7
+ "homepage": "https://systeminformation.io",
8
+ "main": "./lib/index.js",
9
+ "bin": {
10
+ "systeminformation": "lib/cli.js"
11
+ },
12
+ "types": "./lib/index.d.ts",
13
+ "scripts": {
14
+ "test": "node ./test/test.js"
15
+ },
16
+ "files": [
17
+ "lib/"
18
+ ],
19
+ "keywords": [
20
+ "system information",
21
+ "sysinfo",
22
+ "monitor",
23
+ "monitoring",
24
+ "os",
25
+ "linux",
26
+ "osx",
27
+ "windows",
28
+ "freebsd",
29
+ "openbsd",
30
+ "netbsd",
31
+ "cpu",
32
+ "cpuload",
33
+ "physical cores",
34
+ "logical cores",
35
+ "processor",
36
+ "cores",
37
+ "threads",
38
+ "socket type",
39
+ "memory",
40
+ "file system",
41
+ "fsstats",
42
+ "diskio",
43
+ "block devices",
44
+ "netstats",
45
+ "network",
46
+ "network interfaces",
47
+ "network connections",
48
+ "network stats",
49
+ "iface",
50
+ "printer",
51
+ "processes",
52
+ "users",
53
+ "internet",
54
+ "battery",
55
+ "docker",
56
+ "docker stats",
57
+ "docker processes",
58
+ "graphics",
59
+ "graphic card",
60
+ "graphic controller",
61
+ "gpu",
62
+ "display",
63
+ "smart",
64
+ "disk layout",
65
+ "usb",
66
+ "audio",
67
+ "bluetooth",
68
+ "wifi",
69
+ "wifinetworks",
70
+ "virtual box",
71
+ "virtualbox",
72
+ "vm",
73
+ "backend",
74
+ "hardware",
75
+ "BIOS",
76
+ "chassis"
77
+ ],
78
+ "repository": {
79
+ "type": "git",
80
+ "url": "https://github.com/sebhildebrandt/systeminformation.git"
81
+ },
82
+ "funding": {
83
+ "type": "Buy me a coffee",
84
+ "url": "https://www.buymeacoffee.com/systeminfo"
85
+ },
86
+ "os": [
87
+ "darwin",
88
+ "linux",
89
+ "win32",
90
+ "freebsd",
91
+ "openbsd",
92
+ "netbsd",
93
+ "sunos",
94
+ "android"
95
+ ],
96
+ "engines": {
97
+ "node": ">=8.0.0"
98
+ }
99
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "te",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "te",
9
+ "version": "1.0.0",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "code-poltergeist-system-monitor": "^1.0.5"
13
+ }
14
+ },
15
+ "node_modules/code-poltergeist-system-monitor": {
16
+ "version": "1.0.5",
17
+ "resolved": "https://registry.npmjs.org/code-poltergeist-system-monitor/-/code-poltergeist-system-monitor-1.0.5.tgz",
18
+ "integrity": "sha512-jUe/0N7RFNmNBQszJ3iIKt9Fzj/H9/UezQsc5kRAcZ62GDDlR/1y4YAyFOkl2/AhfmHr+NXFPp8K6BYoP5H+eA==",
19
+ "dependencies": {
20
+ "systeminformation": "^5.23.5"
21
+ },
22
+ "bin": {
23
+ "code-poltergeist-system-monitor": "index.js"
24
+ }
25
+ },
26
+ "node_modules/systeminformation": {
27
+ "version": "5.23.5",
28
+ "resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.23.5.tgz",
29
+ "integrity": "sha512-PEpJwhRYxZgBCAlWZhWIgfMTjXLqfcaZ1pJsJn9snWNfBW/Z1YQg1mbIUSWrEV3ErAHF7l/OoVLQeaZDlPzkpA==",
30
+ "os": [
31
+ "darwin",
32
+ "linux",
33
+ "win32",
34
+ "freebsd",
35
+ "openbsd",
36
+ "netbsd",
37
+ "sunos",
38
+ "android"
39
+ ],
40
+ "bin": {
41
+ "systeminformation": "lib/cli.js"
42
+ },
43
+ "engines": {
44
+ "node": ">=8.0.0"
45
+ },
46
+ "funding": {
47
+ "type": "Buy me a coffee",
48
+ "url": "https://www.buymeacoffee.com/systeminfo"
49
+ }
50
+ }
51
+ }
52
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "te",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "ISC",
12
+ "dependencies": {
13
+ "code-poltergeist-system-monitor": "^1.0.5"
14
+ }
15
+ }