pqcheck 0.14.2 → 0.15.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.
- package/README.md +52 -5
- package/bin/cipherwake-chat-hook.js +90 -0
- package/bin/cipherwake-statusline.js +107 -0
- package/bin/pqcheck.js +1608 -38
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pqcheck",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "HTTPS posture scanner with Preview Deploy Trust Diff for PRs, Trust Diff for CI, vendor lockfile + drift alerts, cross-tenant key map, and HNDL/quantum-decryption risk scoring. Free, no signup.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"post-quantum",
|
|
@@ -31,7 +31,9 @@
|
|
|
31
31
|
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"bin": {
|
|
34
|
-
"pqcheck": "./bin/pqcheck.js"
|
|
34
|
+
"pqcheck": "./bin/pqcheck.js",
|
|
35
|
+
"cipherwake-statusline": "./bin/cipherwake-statusline.js",
|
|
36
|
+
"cipherwake-chat-hook": "./bin/cipherwake-chat-hook.js"
|
|
35
37
|
},
|
|
36
38
|
"files": [
|
|
37
39
|
"bin/",
|