New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

libsql

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libsql - npm Package Compare versions

Comparing version 0.1.31 to 0.1.32

12

index.js

@@ -13,4 +13,12 @@ "use strict";

if (target == "linux-x64-musl" && familySync() == GLIBC) {
target = "linux-x64-gnu";
// Workaround for Bun, which reports a musl target, but really wants glibc...
if (familySync() == GLIBC) {
switch (target) {
case "linux-x64-musl":
target = "linux-x64-gnu";
break;
case "linux-arm64-musl":
target = "linux-arm64-gnu";
break;
}
}

@@ -17,0 +25,0 @@

14

package.json
{
"name": "libsql",
"version": "0.1.31",
"version": "0.1.32",
"description": "",

@@ -68,9 +68,9 @@ "os": [

"optionalDependencies": {
"@libsql/darwin-arm64": "0.1.31",
"@libsql/darwin-x64": "0.1.31",
"@libsql/linux-arm64-gnu": "0.1.31",
"@libsql/linux-x64-gnu": "0.1.31",
"@libsql/linux-x64-musl": "0.1.31",
"@libsql/win32-x64-msvc": "0.1.31"
"@libsql/darwin-arm64": "0.1.32",
"@libsql/darwin-x64": "0.1.32",
"@libsql/linux-arm64-gnu": "0.1.32",
"@libsql/linux-x64-gnu": "0.1.32",
"@libsql/linux-x64-musl": "0.1.32",
"@libsql/win32-x64-msvc": "0.1.32"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc