forked from iden3/ffjavascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "@cryptkeeperzk/ffjavascript",
"type": "module",
"version": "0.2.60",
"description": "Finite Field Library in Javascript, is a forked version from the main iden3/ffjavascript repo to make it work with Cryptkeeper Browser Extension",
"publishConfig": {
"access": "public"
},
"main": "./build/main.cjs",
"module": "./main.js",
"exports": {
"import": "./main.js",
"require": "./build/main.cjs"
},
"scripts": {
"test": "mocha",
"build": "rollup -c rollup.cjs.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/iden3/ffjavascript.git"
},
"keywords": [
"Finite",
"Field",
"Javascript",
"Snark",
"Cryptography",
"Library"
],
"author": "Jordi Baylina",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/iden3/ffjavascript/issues"
},
"homepage": "https://github.com/iden3/ffjs#readme",
"dependencies": {
"base64-js": "^1.5.1",
"wasmbuilder": "0.0.16",
"wasmcurves": "0.2.2",
"web-worker": "^1.2.0"
},
"devDependencies": {
"blake2b": "^2.1.3",
"chai": "^4.2.0",
"eslint": "^8.0.1",
"mocha": "^10.0.0",
"rollup": "^2.38.5"
}
}