-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "mlkem-wasm",
"version": "0.0.7",
"description": "ML-KEM-768 implementation using WebAssembly in a single JS file based on mlkem-native",
"main": "dist/mlkem.js",
"module": "dist/mlkem.js",
"type": "module",
"types": "types/mlkem.d.ts",
"scripts": {
"build": "npm run build:wasm && npm run build:bundle && npm run build:types",
"clean": "make -C src clean",
"test": "vitest run",
"build:wasm": "make -C src && node esbuild.config.js",
"build:bundle": "node esbuild.config.js",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types"
},
"keywords": [
"ml-kem",
"kyber",
"post-quantum",
"cryptography",
"webassembly",
"wasm",
"nist",
"pqc"
],
"author": "Dmitry Chestnykh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dchest/mlkem-wasm.git"
},
"files": [
"dist/",
"types/",
"README.md",
"LICENSE"
],
"devDependencies": {
"esbuild": "^0.25.8",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}