@napolab/texture-bridge-win32-x64-msvc 0.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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +28 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @napolab/texture-bridge-win32-x64-msvc
2
+
3
+ This is the Windows x64 platform package for `@napolab/texture-bridge`.
4
+
5
+ This package is installed automatically as an optional dependency.
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@napolab/texture-bridge-win32-x64-msvc",
3
+ "version": "0.2.0",
4
+ "os": [
5
+ "win32"
6
+ ],
7
+ "cpu": [
8
+ "x64"
9
+ ],
10
+ "main": "index.win32-x64-msvc.node",
11
+ "files": [
12
+ "index.win32-x64-msvc.node",
13
+ "README.md"
14
+ ],
15
+ "description": "Native bindings for cross-platform GPU texture sharing (Spout/Syphon)",
16
+ "keywords": [
17
+ "napi-rs",
18
+ "electron",
19
+ "gpu",
20
+ "spout",
21
+ "syphon",
22
+ "texture-sharing"
23
+ ],
24
+ "license": "MIT",
25
+ "publishConfig": {
26
+ "access": "public"
27
+ }
28
+ }