-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 957 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 957 Bytes
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
{
"name": "kyber512-js",
"version": "1.1.2",
"main": "src/node/index.js",
"browser": "dist/kyber.min.js",
"files": [
"src/**/*.js",
"src/**/*.d.ts",
"dist",
"kyber.wasm",
"kyber.js"
],
"scripts": {
"build": "webpack"
},
"keywords": [
"kyber",
"post-quantum",
"cryptography",
"encryption",
"kem",
"quantum-resistant",
"public-key",
"crypto-algorithm",
"javascript",
"web-crypto"
],
"author": "Miloš Mirković",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/milosm2000/kyber512-js.git"
},
"description": "A lightweight implementation of the Kyber512 post-quantum cryptographic algorithm. Provides key generation, encapsulation, and decapsulation functions for quantum-resistant public-key encryption.",
"devDependencies": {
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
}
}