quantum-resistant-rustykey 0.13.4 → 0.13.5
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 -1
- package/dist/index.d.ts +66 -15
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +76 -23
- package/dist/index.js.map +1 -1
- package/dist/sqisign-accel-worker.js +10 -1
- package/dist/sqisign-accel-worker.js.map +2 -2
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quantum-resistant-rustykey",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.5",
|
|
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",
|
|
@@ -64,8 +64,9 @@
|
|
|
64
64
|
"prepublishOnly": "pnpm verify:dist",
|
|
65
65
|
"release": "changeset publish",
|
|
66
66
|
"example:browser": "pnpm --filter browser-demo dev",
|
|
67
|
-
"docs:
|
|
68
|
-
"docs:
|
|
67
|
+
"docs:sync": "node scripts/sync-tooling-docs.mjs",
|
|
68
|
+
"docs:dev": "pnpm docs:sync && pnpm --dir website start",
|
|
69
|
+
"docs:build": "pnpm docs:sync && pnpm --dir website build",
|
|
69
70
|
"docs:serve": "pnpm --dir website serve"
|
|
70
71
|
},
|
|
71
72
|
"devDependencies": {
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
"@noble/post-quantum": "0.6.1"
|
|
83
84
|
},
|
|
84
85
|
"engines": {
|
|
85
|
-
"node": ">=26.
|
|
86
|
+
"node": ">=26.7.0"
|
|
86
87
|
},
|
|
87
|
-
"packageManager": "pnpm@11.
|
|
88
|
+
"packageManager": "pnpm@11.24.0"
|
|
88
89
|
}
|