postquant 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 (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +11 -0
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("postquant v0.0.1 - PQC audit tool. Coming soon. https://postquant.dev");
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "postquant",
3
+ "version": "0.0.1",
4
+ "description": "Post-quantum cryptography audit tool. Scan your code for quantum-vulnerable crypto.",
5
+ "main": "index.js",
6
+ "bin": { "postquant": "./index.js" },
7
+ "keywords": ["post-quantum","cryptography","pqc","security","audit","quantum","nist"],
8
+ "author": "PostQuant <hello@postquant.dev> (https://postquant.dev)",
9
+ "license": "MIT",
10
+ "homepage": "https://postquant.dev"
11
+ }