cryosnap-win32-x64-msvc-alt 0.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 (3) hide show
  1. package/README.md +3 -0
  2. package/index.js +1 -0
  3. package/package.json +28 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # cryosnap-win32-x64-msvc-alt
2
+
3
+ Placeholder package. Real binaries are published by CI.
package/index.js ADDED
@@ -0,0 +1 @@
1
+ throw new Error("placeholder package; real binaries published by CI");
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "cryosnap-win32-x64-msvc-alt",
3
+ "version": "0.0.1",
4
+ "description": "placeholder for cryosnap native binary (windows x64)",
5
+ "license": "MIT",
6
+ "main": "index.js",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/Wangnov/cryosnap.git"
10
+ },
11
+ "homepage": "https://github.com/Wangnov/cryosnap#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/Wangnov/cryosnap/issues"
14
+ },
15
+ "keywords": [
16
+ "cryosnap",
17
+ "napi",
18
+ "native",
19
+ "windows",
20
+ "screenshot"
21
+ ],
22
+ "os": [
23
+ "win32"
24
+ ],
25
+ "cpu": [
26
+ "x64"
27
+ ]
28
+ }