-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (37 loc) · 854 Bytes
/
package.json
File metadata and controls
38 lines (37 loc) · 854 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
{
"name": "openfhe-crypto",
"version": "0.0.1",
"description": "JS bindings for openfhe Homomorphic Encryption Library",
"main": "index.js",
"files": [
"index.js",
"index.ts",
"lib"
],
"directories": {
"doc": "doc",
"example": "examples",
"lib": "lib"
},
"scripts": {
"test": "mocha ./unittest/*.mjs --recursive",
"build-ts-docs": "node doc/ts/generate-d-ts.mjs && typedoc"
},
"repository": {
"type": "git",
"url": "git@github.com:openfheorg/OpenFHE-WASM.git"
},
"author": "",
"license": "BSD-3",
"bugs": {
"url": "https://github.com/openfheorg/OpenFHE-WASM/issues"
},
"homepage": "https://github.com/openfheorg/OpenFHE-WASM/blob/main/README.md",
"devDependencies": {
"mocha": "^8.4.0",
"typedoc": "^0.20.36"
},
"dependencies": {
"tsembind": "^1.0.2"
}
}