@quantumsequrity/qnsqy-win32-x64 7.2.21

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 (4) hide show
  1. package/LICENSE +12 -0
  2. package/README.md +20 -0
  3. package/package.json +29 -0
  4. package/qnsqy.exe +0 -0
package/LICENSE ADDED
@@ -0,0 +1,12 @@
1
+ QNSQY is proprietary software. (c) 2026 Quantum Sequrity.
2
+
3
+ This package contains the prebuilt QNSQY binary for Windows x86_64, licensed
4
+ under the QNSQY end-user license agreement, available at
5
+ https://quantumsequrity.com/terms.
6
+
7
+ This package is published solely as an optional dependency of the `qnsqy`
8
+ npm package, to deliver the platform-specific binary. Redistribution of the
9
+ binary outside that channel, or modification to alter the shipped binary, is
10
+ not permitted.
11
+
12
+ Source-available for security audit on request: security@quantumsequrity.com.
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # qnsqy-win32-x64
2
+
3
+ Prebuilt [QNSQY](https://www.npmjs.com/package/qnsqy) binary for **Windows
4
+ x86_64**.
5
+
6
+ This package is not meant to be installed directly. It is pulled in
7
+ automatically as an `optionalDependencies` entry of the main `qnsqy`
8
+ package, so that `npm` downloads only the binary that matches your
9
+ platform (selected by the `os` / `cpu` fields). It carries no install
10
+ script and makes no network calls.
11
+
12
+ To use QNSQY, install the main package:
13
+
14
+ ```
15
+ npm install -g qnsqy
16
+ ```
17
+
18
+ - Homepage: https://quantumsequrity.com
19
+ - Download page (checksums + PQ signatures): https://quantumsequrity.com/download
20
+ - Security disclosure: security@quantumsequrity.com
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@quantumsequrity/qnsqy-win32-x64",
3
+ "version": "7.2.21",
4
+ "description": "Prebuilt QNSQY binary for Windows x86_64. Installed automatically as an optional dependency of the `qnsqy` package. Do not install directly.",
5
+ "homepage": "https://quantumsequrity.com",
6
+ "bugs": "https://quantumsequrity.com/contact",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/quantumsequrity/qnsqy.git"
10
+ },
11
+ "license": "SEE LICENSE IN LICENSE",
12
+ "author": "Quantum Sequrity",
13
+ "os": [
14
+ "win32"
15
+ ],
16
+ "cpu": [
17
+ "x64"
18
+ ],
19
+ "engines": {
20
+ "node": ">=18.0.0"
21
+ },
22
+ "preferUnplugged": true,
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "files": [
27
+ "qnsqy.exe"
28
+ ]
29
+ }
package/qnsqy.exe ADDED
Binary file