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

@mote-software/markitdown-binary-linux-x64

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mote-software/markitdown-binary-linux-x64 - npm Package Compare versions

Comparing version
1.0.1
to
1.1.0
+16
postinstall.js
#!/usr/bin/env node
const fs = require("fs");
const path = require("path");
// Ensure the binary has executable permissions
const binaryPath = path.join(__dirname, "bin", "markitdown");
try {
if (fs.existsSync(binaryPath)) {
fs.chmodSync(binaryPath, 0o755);
console.log("✓ markitdown binary permissions set");
}
} catch (error) {
console.warn("Warning: Could not set executable permissions:", error.message);
// Don't fail the installation if this doesn't work
}
+7
-3
{
"name": "@mote-software/markitdown-binary-linux-x64",
"version": "1.0.1",
"version": "1.1.0",
"description": "markitdown binary for Linux x64",

@@ -12,3 +12,4 @@ "os": [

"files": [
"bin/markitdown"
"bin/markitdown",
"postinstall.js"
],

@@ -19,3 +20,6 @@ "repository": {

},
"license": "MIT"
"license": "MIT",
"scripts": {
"postinstall": "node postinstall.js"
}
}

Sorry, the diff of this file is not supported yet