@smartspectra/node-sdk 3.2.0-rc.8 → 3.2.0
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/js/resolve-native.js +4 -2
- package/package.json +5 -5
package/js/resolve-native.js
CHANGED
|
@@ -6,8 +6,10 @@
|
|
|
6
6
|
// Picks the right libsmartspectra_capi.{dll,dylib,so} for the current
|
|
7
7
|
// platform+arch and returns a path that koffi.load() can consume.
|
|
8
8
|
//
|
|
9
|
-
// The native runtime closure (shim + libsmartspectra + OpenCV +
|
|
10
|
-
//
|
|
9
|
+
// The native runtime closure (shim + libsmartspectra + OpenCV + graph data,
|
|
10
|
+
// plus a Vulkan loader on Linux/Windows; on macOS MoltenVK is statically
|
|
11
|
+
// linked into libsmartspectra, so no separate Vulkan dylib ships) lives in
|
|
12
|
+
// per-platform packages — `@smartspectra/node-sdk-<plat>-<arch>`
|
|
11
13
|
// — declared as regular (HARD) dependencies of the main package. There is no
|
|
12
14
|
// postinstall download and no install script in the published tarball.
|
|
13
15
|
//
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartspectra/node-sdk",
|
|
3
|
-
"version": "3.2.0
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Node.js (Electron) FFI binding for SmartSpectra vitals measurement",
|
|
5
5
|
"author": "Presage Technologies, Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"koffi": "^2.10.0",
|
|
67
67
|
"protobufjs": "^7.5.0",
|
|
68
|
-
"@smartspectra/node-sdk-linux-x64": "3.2.0
|
|
69
|
-
"@smartspectra/node-sdk-linux-arm64": "3.2.0
|
|
70
|
-
"@smartspectra/node-sdk-darwin-arm64": "3.2.0
|
|
71
|
-
"@smartspectra/node-sdk-win32-x64": "3.2.0
|
|
68
|
+
"@smartspectra/node-sdk-linux-x64": "3.2.0",
|
|
69
|
+
"@smartspectra/node-sdk-linux-arm64": "3.2.0",
|
|
70
|
+
"@smartspectra/node-sdk-darwin-arm64": "3.2.0",
|
|
71
|
+
"@smartspectra/node-sdk-win32-x64": "3.2.0"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@types/node": "^20.0.0",
|