quantum-resistant-rustykey 0.6.5 → 0.7.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -251,4 +251,4 @@ This project was generously supported by:
251
251
  - getting annoyed? First try being kind and courteous: someone may simply have had a bad day.
252
252
  - people have differences of opinion, usually every design or implementation choice carries a trade-off and numerous costs. There is seldom a right answer.
253
253
  - go light on unstructured critique, encourage others!
254
- - if you feel you have been or are being harassed or made uncomfortable by a community member, contact BuzzyBee our friendly multi-LLM on the chat widget on our testbed site
254
+ - if you feel you have been or are being harassed or made uncomfortable by a community member, contact BuzzyBee® our friendly multi-LLM on the chat widget on our testbed site
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quantum-resistant-rustykey",
3
- "version": "0.6.5",
3
+ "version": "0.7.0",
4
4
  "description": "WebAssembly post-quantum-resistant tools for web",
5
5
  "author": "Antony R Mott <a@auditcanary.com> (https://rustykey.app)",
6
6
  "license": "ISC",
@@ -41,18 +41,23 @@
41
41
  "lint:fix": "biome check --write .",
42
42
  "build:wasm": "node scripts/build-wasm.mjs",
43
43
  "bundle:mlkem": "node scripts/bundle-mlkem.mjs",
44
- "build:vendor": "pnpm build:wasm && pnpm bundle:mlkem",
45
- "build": "tsdown && node scripts/copy-assets.mjs",
46
- "test": "vitest run",
44
+ "bundle:signatures": "node scripts/bundle-signatures.mjs",
45
+ "build:vendor": "pnpm build:wasm && pnpm bundle:mlkem && pnpm bundle:signatures",
46
+ "build": "pnpm build:vendor && tsdown",
47
+ "test": "pnpm build:vendor && vitest run",
47
48
  "release": "changeset publish",
48
49
  "example:browser": "pnpm --filter browser-demo dev"
49
50
  },
50
51
  "devDependencies": {
51
52
  "@biomejs/biome": "2.4.11",
52
53
  "@changesets/cli": "2.30.0",
54
+ "@types/node": "25.6.0",
53
55
  "esbuild": "0.28.0",
54
56
  "tsdown": "0.21.8",
55
57
  "typescript": "6.0.2",
56
58
  "vitest": "4.1.4"
59
+ },
60
+ "dependencies": {
61
+ "@noble/post-quantum": "0.6.1"
57
62
  }
58
63
  }