🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

utoo

Package Overview
Dependencies
Maintainers
2
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

utoo - npm Package Compare versions

Comparing version
1.0.28
to
1.0.29
+6
-6
package.json
{
"name": "utoo",
"version": "1.0.28",
"version": "1.0.29",
"description": "Utoo CLI tool",

@@ -15,7 +15,7 @@ "bin": {

"optionalDependencies": {
"@utoo/utoo-linux-x64": "1.0.28",
"@utoo/utoo-linux-arm64": "1.0.28",
"@utoo/utoo-darwin-x64": "1.0.28",
"@utoo/utoo-darwin-arm64": "1.0.28",
"@utoo/utoo-win32-x64": "1.0.28"
"@utoo/utoo-linux-x64": "1.0.29",
"@utoo/utoo-linux-arm64": "1.0.29",
"@utoo/utoo-darwin-x64": "1.0.29",
"@utoo/utoo-darwin-arm64": "1.0.29",
"@utoo/utoo-win32-x64": "1.0.29"
},

@@ -22,0 +22,0 @@ "os": ["darwin", "linux", "win32"],

#!/bin/sh
# Get CPU & OS info - POSIX compatible (works with sh on Windows Git)
if [ "$OSTYPE" = "msys" ] || [ "$OSTYPE" = "win32" ]; then
# Detect Windows via uname output (MINGW*/MSYS*/CYGWIN*) so kernel-version
# bumps on the host (e.g. Server 2022 -> 2025) don't change the package name.
UNAME_S=$(uname -s 2>/dev/null || echo "")
case "$UNAME_S" in
MINGW*|MSYS*|CYGWIN*)
IS_WIN=1
;;
*)
if [ "$OSTYPE" = "msys" ] || [ "$OSTYPE" = "win32" ]; then
IS_WIN=1
else
IS_WIN=0
fi
;;
esac
if [ "$IS_WIN" = "1" ]; then
OS="win32"

@@ -14,11 +30,11 @@ # On Windows, use PROCESSOR_ARCHITECTURE

fi
else
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
if [ "$ARCH" = "x86_64" ]; then
ARCH="x64"
elif [ "$ARCH" = "aarch64" ] || [ "$ARCH" = "arm64" ]; then
ARCH="arm64"
fi
fi
else
OS=$(echo "${UNAME_S:-unknown}" | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
if [ "$ARCH" = "x86_64" ]; then
ARCH="x64"
elif [ "$ARCH" = "aarch64" ] || [ "$ARCH" = "arm64" ]; then
ARCH="arm64"
fi
fi

@@ -25,0 +41,0 @@ # Function to find node_modules directory recursively