about-system 0.0.11 → 0.0.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "about-system",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
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
5
  "main": "src/about-system.js",
6
6
  "bin": {
@@ -825,7 +825,7 @@ const infoFunctions = {
825
825
  const cached = getCachedValue(this.cache, 'pacman', settings);
826
826
  if (cached) return cached;
827
827
 
828
- const commands = ['apt', 'npm', 'pip', 'docker', 'hx', 'nvim', 'bun', 'yay',
828
+ const commands = ['apt', 'npm', 'uv', 'docker', 'hx', 'nvim', 'bun', 'yay',
829
829
  'pacman', 'yum', 'dnf', 'zypper', 'emerge', 'apk', 'snap', 'flatpak'];
830
830
  const available = commands.filter(cmd => commandExists(cmd));
831
831