@xbbg/core-win32-x64 1.1.2 → 1.1.3

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/README.md CHANGED
@@ -1,3 +1,27 @@
1
1
  # @xbbg/core-win32-x64
2
2
 
3
- Prebuilt native `napi_xbbg.node` addon for `@xbbg/core` on Windows x64.
3
+ Platform-specific prebuilt native `napi_xbbg.node` addon used by `@xbbg/core`. This package supports the `win32 x64` target. npm installs it automatically as an optional dependency of `@xbbg/core` on matching platforms.
4
+
5
+ ## Install
6
+
7
+ Install the wrapper package:
8
+
9
+ ```sh
10
+ npm install @xbbg/core
11
+ ```
12
+
13
+ Direct installation of `@xbbg/core-win32-x64` is only recommended for diagnostics or offline packaging workflows.
14
+
15
+ ## Contents
16
+
17
+ - `index.js`
18
+ - `napi_xbbg.node`
19
+ - `package.json` and `README.md`
20
+
21
+ ## Runtime requirements
22
+
23
+ Bloomberg access and runtime requirements are inherited from `@xbbg/core`. This package does not vendor Bloomberg SDK binaries.
24
+
25
+ ## Release integrity
26
+
27
+ Package releases are intended to be built on GitHub-hosted Actions and published to npm with trusted publishing and provenance once configured.
package/napi_xbbg.node CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,33 @@
1
1
  {
2
2
  "name": "@xbbg/core-win32-x64",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
+ "description": "Prebuilt native napi_xbbg.node addon for @xbbg/core on Windows x64.",
5
+ "keywords": [
6
+ "xbbg",
7
+ "bloomberg",
8
+ "blpapi",
9
+ "finance",
10
+ "market-data",
11
+ "native-addon",
12
+ "napi",
13
+ "rust",
14
+ "prebuild",
15
+ "windows",
16
+ "x64"
17
+ ],
18
+ "license": "Apache-2.0",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/alpha-xone/xbbg.git",
22
+ "directory": "js-xbbg/packages/xbbg-core-win32-x64"
23
+ },
24
+ "homepage": "https://github.com/alpha-xone/xbbg#readme",
25
+ "bugs": {
26
+ "url": "https://github.com/alpha-xone/xbbg/issues"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
4
31
  "os": [
5
32
  "win32"
6
33
  ],