finny 1.0.4 → 1.0.6
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/finny +4 -0
- package/package.json +6 -6
package/bin/finny
CHANGED
|
@@ -39,6 +39,10 @@ function getBinaryPath() {
|
|
|
39
39
|
|
|
40
40
|
for (const binaryPath of possiblePaths) {
|
|
41
41
|
if (fs.existsSync(binaryPath)) {
|
|
42
|
+
// Ensure binary has execute permissions (npm may strip them)
|
|
43
|
+
try {
|
|
44
|
+
fs.chmodSync(binaryPath, 0o755);
|
|
45
|
+
} catch (_) {}
|
|
42
46
|
return binaryPath;
|
|
43
47
|
}
|
|
44
48
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "finny",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "AI-powered quantitative trading CLI with TUI interface",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"trading",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"postinstall": "node scripts/postinstall.js"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"finny-darwin-arm64": "1.0.
|
|
31
|
-
"finny-darwin-x64": "1.0.
|
|
32
|
-
"finny-linux-arm64": "1.0.
|
|
33
|
-
"finny-linux-x64": "1.0.
|
|
34
|
-
"finny-windows-x64": "1.0.
|
|
30
|
+
"finny-darwin-arm64": "1.0.6",
|
|
31
|
+
"finny-darwin-x64": "1.0.6",
|
|
32
|
+
"finny-linux-arm64": "1.0.6",
|
|
33
|
+
"finny-linux-x64": "1.0.6",
|
|
34
|
+
"finny-windows-x64": "1.0.6"
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">=18"
|