@navinora/connector-darwin-x64 0.8.41 → 0.8.43
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/bin/navinora-connector +0 -0
- package/bin/runtime/deepseek-tui +0 -0
- package/package.json +6 -2
- package/postinstall.js +13 -0
package/bin/navinora-connector
CHANGED
|
Binary file
|
package/bin/runtime/deepseek-tui
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navinora/connector-darwin-x64",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.43",
|
|
4
4
|
"description": "macOS Intel native payload for Navinora Connector",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://pivot.enclaws.com",
|
|
@@ -8,8 +8,12 @@
|
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/hashSTACS-Global/navinora-connector.git"
|
|
10
10
|
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"postinstall": "node postinstall.js"
|
|
13
|
+
},
|
|
11
14
|
"files": [
|
|
12
|
-
"bin/"
|
|
15
|
+
"bin/",
|
|
16
|
+
"postinstall.js"
|
|
13
17
|
],
|
|
14
18
|
"os": [
|
|
15
19
|
"darwin"
|
package/postinstall.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const fs = require("node:fs");
|
|
4
|
+
const path = require("node:path");
|
|
5
|
+
|
|
6
|
+
for (const file of [
|
|
7
|
+
path.join(__dirname, "bin", "navinora-connector"),
|
|
8
|
+
path.join(__dirname, "bin", "runtime", "deepseek-tui"),
|
|
9
|
+
]) {
|
|
10
|
+
if (fs.existsSync(file)) {
|
|
11
|
+
fs.chmodSync(file, 0o755);
|
|
12
|
+
}
|
|
13
|
+
}
|