-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
45
{
"name": "kem-js",
"version": "1.0.0",
"description": "FIPS 203 compliant ML-KEM (Kyber) Post-Quantum Cryptography library natively in modern JavaScript.",
"license": "MIT",
"author": "ByteKnight28",
"keywords": [
"ML-KEM",
"Kyber",
"FIPS 203",
"Post-Quantum Cryptography",
"PQC"
],
"main": "lib/index.js",
"directories": {
"lib": "./lib",
"test": "./test",
"docs": "./docs",
"backend": "./backend"
},
"scripts": {
"test": "make test",
"lint": "make lint"
},
"dependencies": {
"@stdlib/array-int32": "^0.2.3",
"@stdlib/array-uint8": "^0.2.3",
"@stdlib/assert-is-nonnegative-integer": "^0.2.3",
"@stdlib/assert-is-uint8array": "^0.2.3",
"@stdlib/math-base-ops-imul": "^0.2.2",
"@stdlib/math-base-special-abs": "^0.2.3",
"@stdlib/math-base-special-floor": "^0.2.4",
"@stdlib/ndarray-base-numel": "^0.2.3",
"@stdlib/ndarray-ctor": "^0.3.1",
"express": "^5.2.1",
"js-sha3": "^0.9.3"
},
"devDependencies": {
"eslint": "^8.0.0",
"tape": "^5.0.0"
},
"engines": {
"node": ">=10.0.0"
}
}