@alpha-sdk/win32-x64 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/LICENSE +24 -0
  2. package/package.json +4 -3
package/LICENSE ADDED
@@ -0,0 +1,24 @@
1
+ This package contains two components with separate licenses:
2
+
3
+ 1. CameraWebApp Binary
4
+ License: MIT
5
+ Copyright (c) 2026 Alpha SDK Contributors
6
+
7
+ 2. Sony Camera Remote SDK Libraries (libCr_Core, libCr_PTP_IP, libCr_PTP_USB,
8
+ libmonitor_protocol, libmonitor_protocol_pf, libssh2, libusb)
9
+ License: Sony Camera Remote SDK License Agreement
10
+ Full text: https://support.d-imaging.sony.co.jp/app/sdk/licenseagreement_d/en.html
11
+
12
+ The Sony Camera Remote SDK is licensed, not sold. Use of the SDK libraries
13
+ is subject to Sony's License Agreement. Key terms:
14
+ - You may use the SDK to develop applications that remotely control Sony cameras
15
+ - You may distribute the SDK binary libraries incorporated into your application
16
+ - You may not reverse engineer, decompile, or disassemble the SDK libraries
17
+ - The SDK is provided "AS IS" without warranty
18
+
19
+ See the full license agreement at the URL above for complete terms.
20
+
21
+ 3. OpenCV Libraries (libopencv_core, libopencv_imgproc, libopencv_imgcodecs,
22
+ libopencv_highgui)
23
+ License: Apache License 2.0
24
+ https://opencv.org/license/
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@alpha-sdk/win32-x64",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Sony Camera Remote SDK — Windows x64 binary",
5
5
  "os": ["win32"],
6
6
  "cpu": ["x64"],
7
7
  "files": [
8
8
  "CameraWebApp.exe",
9
9
  "*.dll",
10
- "CrAdapter/"
10
+ "CrAdapter/",
11
+ "LICENSE"
11
12
  ],
12
- "license": "UNLICENSED"
13
+ "license": "SEE LICENSE IN LICENSE"
13
14
  }