-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@hicaru/ntrup.js",
"version": "0.0.10",
"description": "Pure JavaScript implementation of NTRU Prime post-quantum cryptography algorithm",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": ["dist"],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "rollup -c",
"format": "prettier --write ./**/*.{js,ts,test.ts}",
"build:watch": "tsc --watch"
},
"keywords": [
"ntru",
"ntruprime",
"crypto",
"encryption",
"pure-js",
"post-quantum",
"cryptography",
"pqc",
"key-encapsulation",
"kem"
],
"author": "Rinat",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openzebra/ntrulp.js.git"
},
"bugs": {
"url": "https://github.com/openzebra/ntrulp.js/issues"
},
"homepage": "https://github.com/openzebra/ntrulp.js/blob/master/README.md",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/bun": "^1.2.9",
"@vitest/coverage-v8": "^3.1.1",
"prettier": "^3.5.3",
"tslib": "^2.8.1",
"vitest": "^3.1.1"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@hicaru/chacharand.js": "^0.0.3"
}
}