-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
93 lines (93 loc) · 2.38 KB
/
package.json
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@noble/post-quantum",
"version": "0.3.1",
"description": "Auditable & minimal JS implementation of post-quantum public-key cryptography: FIPS 203, 204, 205",
"files": [
"*.js",
"*.js.map",
"*.d.ts",
"*.d.ts.map",
"esm",
"src"
],
"scripts": {
"bench": "node benchmark/ml-kem.js noble; node benchmark/ml-dsa.js noble; node benchmark/slh-dsa.js noble",
"bench:all": "node benchmark/{ml-kem,ml-dsa,slh-dsa}.js",
"bench:install": "cd benchmark && npm install && cd ../../",
"build": "tsc && tsc -p tsconfig.cjs.json",
"build:release": "npx jsbt esbuild test/build",
"build:clean": "rm {.,esm}/*.{js,d.ts,d.ts.map,js.map} 2> /dev/null",
"lint": "prettier --check 'src/**/*.{js,ts}' 'test/**/*.{js,ts,mjs}'",
"format": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts,mjs}'",
"test": "node test/index.js",
"test:bun": "bun test/index.js",
"test:deno": "deno --allow-env --allow-read test/index.js"
},
"author": "Paul Miller (https://paulmillr.com)",
"homepage": "https://paulmillr.com/noble/",
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/noble-post-quantum.git"
},
"license": "MIT",
"sideEffects": false,
"dependencies": {
"@noble/hashes": "1.7.1"
},
"devDependencies": {
"@paulmillr/jsbt": "0.3.1",
"micro-bmark": "0.4.0",
"micro-should": "0.5.1",
"prettier": "3.3.2",
"typescript": "5.5.2"
},
"main": "index.js",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./index.js"
},
"./index": {
"import": "./esm/index.js",
"require": "./index.js"
},
"./_crystals": {
"import": "./esm/_crystals.js",
"require": "./_crystals.js"
},
"./ml-dsa": {
"import": "./esm/ml-dsa.js",
"require": "./ml-dsa.js"
},
"./ml-kem": {
"import": "./esm/ml-kem.js",
"require": "./ml-kem.js"
},
"./slh-dsa": {
"import": "./esm/slh-dsa.js",
"require": "./slh-dsa.js"
},
"./utils": {
"import": "./esm/utils.js",
"require": "./utils.js"
}
},
"keywords": [
"ml-kem",
"ml-dsa",
"slh-dsa",
"kyber",
"dilithium",
"sphincs",
"fips203",
"fips204",
"fips205",
"pqc",
"post-quantum",
"public-key",
"crypto",
"noble",
"cryptography"
],
"funding": "https://paulmillr.com/funding/"
}