You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

knowns

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

knowns - npm Package Compare versions

Comparing version
0.15.1
to
0.15.2
+14
-0
bin/knowns.js

@@ -23,2 +23,15 @@ #!/usr/bin/env node

function ensureExecutable(binary) {
if (process.platform === "win32") {
return;
}
const mode = fs.statSync(binary).mode;
if ((mode & 0o111) !== 0) {
return;
}
fs.chmodSync(binary, mode | 0o755);
}
function getBinaryPath() {

@@ -98,2 +111,3 @@ const platform = os.platform();

try {
ensureExecutable(binary);
execFileSync(binary, args, {

@@ -100,0 +114,0 @@ stdio: "inherit",

+7
-7
{
"name": "knowns",
"version": "0.15.1",
"version": "0.15.2",
"description": "AI-native project management CLI",

@@ -11,8 +11,8 @@ "bin": {

"optionalDependencies": {
"@knowns/darwin-arm64": "0.15.1",
"@knowns/darwin-x64": "0.15.1",
"@knowns/linux-arm64": "0.15.1",
"@knowns/linux-x64": "0.15.1",
"@knowns/win-arm64": "0.15.1",
"@knowns/win-x64": "0.15.1"
"@knowns/darwin-arm64": "0.15.2",
"@knowns/darwin-x64": "0.15.2",
"@knowns/linux-arm64": "0.15.2",
"@knowns/linux-x64": "0.15.2",
"@knowns/win-arm64": "0.15.2",
"@knowns/win-x64": "0.15.2"
},

@@ -19,0 +19,0 @@ "license": "MIT",