@palamedes/core-node-win32-x64-msvc 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 +6 -0
  2. package/index.js +1 -0
  3. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # @palamedes/core-node-win32-x64-msvc
2
+
3
+ Bootstrap placeholder package for Trusted Publisher setup.
4
+
5
+ This package exists only to reserve the npm package name and configure Trusted Publisher.
6
+ The first real native binary release is expected in a later version.
package/index.js ADDED
@@ -0,0 +1 @@
1
+ throw new Error("@palamedes/core-node-win32-x64-msvc@0.0.1 is a bootstrap placeholder. Install a later version with real native binaries.")
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@palamedes/core-node-win32-x64-msvc",
3
+ "version": "0.0.1",
4
+ "description": "Bootstrap placeholder for Windows x64 native bindings",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/sebastian-software/palamedes",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/sebastian-software/palamedes.git"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "main": "./index.js",
15
+ "files": [
16
+ "README.md",
17
+ "index.js"
18
+ ],
19
+ "os": [
20
+ "win32"
21
+ ],
22
+ "cpu": [
23
+ "x64"
24
+ ]
25
+ }