quantum-resistant-rustykey 0.2.1 → 0.4.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 +1 -1
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -138,7 +138,7 @@ When using ML-KEM in a web environment, consider the following security best pra
|
|
|
138
138
|
|
|
139
139
|
### Prerequisites
|
|
140
140
|
|
|
141
|
-
- Node.js >=
|
|
141
|
+
- Node.js >= 24.1.0 (optimal)
|
|
142
142
|
- Node.js >= 22 (current LTS)
|
|
143
143
|
- pnpm (pnpm for faster cache, but npm also works fine)
|
|
144
144
|
- Emscripten
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quantum-resistant-rustykey",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "ML-KEM (QRS) compiled to WebAssembly",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"keywords": [
|
|
@@ -32,6 +32,11 @@
|
|
|
32
32
|
"typescript": "^5.8.3",
|
|
33
33
|
"vitest": "^3.1.3"
|
|
34
34
|
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"next": "15.3.3",
|
|
37
|
+
"react": "19.1.0",
|
|
38
|
+
"react-dom": "19.1.0"
|
|
39
|
+
},
|
|
35
40
|
"scripts": {
|
|
36
41
|
"pre": "emcmake cmake -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=install && cmake --build build --target install",
|
|
37
42
|
"build": "tsup",
|