about-system 0.0.2

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 (3) hide show
  1. package/README.md +235 -0
  2. package/about-system.js +1430 -0
  3. package/package.json +57 -0
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "about-system",
3
+ "version": "0.0.2",
4
+ "description": "A Node.js script to display key system information with emojis. Cross-platform support for Windows, macOS, and Linux with customizable output and caching.",
5
+ "main": "about-system.js",
6
+ "bin": {
7
+ "about-system": "./about-system.js"
8
+ },
9
+ "scripts": {
10
+ "ship": "npx standard-version --release-as patch; npm publish",
11
+ "start": "node about-system.js",
12
+ "install-greeting": "node about-system.js --install",
13
+ "show-settings": "node about-system.js --settings-show",
14
+ "reset-settings": "node about-system.js --settings-reset",
15
+ "clear-cache": "node about-system.js --cache-clear",
16
+ "help": "node about-system.js --help"
17
+ },
18
+ "keywords": [
19
+ "about-system",
20
+ "system",
21
+ "information",
22
+ "cli",
23
+ "terminal",
24
+ "cross-platform",
25
+ "windows",
26
+ "linux",
27
+ "macos",
28
+ "shell",
29
+ "greeting",
30
+ "emoji",
31
+ "system-monitoring"
32
+ ],
33
+ "author": "vtempest",
34
+ "license": "MIT",
35
+ "engines": {
36
+ "node": ">=12.0.0"
37
+ },
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "https://github.com/vtempest/server-shell-setup.git"
41
+ },
42
+ "homepage": "https://github.com/vtempest/server-shell-setup#readme",
43
+ "files": [
44
+ "about-system.js",
45
+ "README.md",
46
+ "package.json"
47
+ ],
48
+ "os": [
49
+ "win32",
50
+ "darwin",
51
+ "linux"
52
+ ],
53
+ "preferGlobal": true,
54
+ "directories": {
55
+ "bin": "."
56
+ }
57
+ }