quantum-resistant-rustykey 0.13.3 → 0.13.4
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 +3 -0
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -15,4 +15,7 @@ pnpm i quantum-resistant-rustykey@latest
|
|
|
15
15
|
**Live testbed:** [pqc.rustykey.me](https://pqc.rustykey.me)
|
|
16
16
|
**License:** ISC
|
|
17
17
|
|
|
18
|
+
|
|
19
|
+
WASM modules are compiled from pinned C under `vendor/` (see `vendor.lock.json`). Independent C→WASM check: `REQUIRE_REPRODUCIBLE=1 pnpm build:vendor && pnpm verify:repro`. Provenance: [Supply-chain provenance](https://antonymott.github.io/quantum-resistant-rustykey/docs/guides/provenance).
|
|
20
|
+
|
|
18
21
|
> Pre-production until v1.0.0. Prefer `@latest` (or a caret range) so dependents pick up patches.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quantum-resistant-rustykey",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.4",
|
|
4
4
|
"description": "WebAssembly post-quantum-resistant tools for web",
|
|
5
5
|
"author": "Antony R Mott <antony@rustykey.io> (https://rustykey.io)",
|
|
6
6
|
"license": "ISC",
|
|
@@ -49,14 +49,17 @@
|
|
|
49
49
|
"clean": "rm -rf dist",
|
|
50
50
|
"lint": "biome check --config-path ./biome.json ./src ./scripts ./tsconfig.json ./tsconfig.lint.json ./tsdown.config.ts && tsc --project ./tsconfig.lint.json",
|
|
51
51
|
"lint:fix": "biome check --config-path ./biome.json --write ./src ./scripts ./tsconfig.json ./tsconfig.lint.json ./tsdown.config.ts",
|
|
52
|
+
"fetch:vendors": "node scripts/fetch-vendors.mjs",
|
|
52
53
|
"build:wasm": "node scripts/build-wasm.mjs",
|
|
54
|
+
"build:audit": "node scripts/build-audit-wasm.mjs",
|
|
53
55
|
"bundle:mlkem": "node scripts/bundle-mlkem.mjs",
|
|
54
56
|
"bundle:signatures": "node scripts/bundle-signatures.mjs",
|
|
55
57
|
"bundle:accel-worker": "node scripts/bundle-accel-worker.mjs",
|
|
56
58
|
"build:vendor": "pnpm build:wasm && pnpm bundle:mlkem && pnpm bundle:signatures",
|
|
57
|
-
"build": "pnpm build:vendor && tsdown && pnpm bundle:accel-worker",
|
|
59
|
+
"build": "pnpm build:vendor && tsdown && pnpm bundle:accel-worker && pnpm verify:dist",
|
|
58
60
|
"test": "pnpm build:vendor && vitest run",
|
|
59
61
|
"verify:dist": "node scripts/verify-dist.mjs",
|
|
62
|
+
"verify:repro": "node scripts/verify-repro.mjs",
|
|
60
63
|
"prepack": "pnpm verify:dist",
|
|
61
64
|
"prepublishOnly": "pnpm verify:dist",
|
|
62
65
|
"release": "changeset publish",
|