generated from crema-labs/circomkit-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "@crema-labs/ecdsa-p384-circom",
"description": "ECDSA P384 implementation for circom",
"license": "MIT",
"main": "index.js",
"version": "0.0.1",
"scripts": {
"start": "npx ts-node ./src/index.ts",
"test": "NODE_OPTIONS=--max-old-space-size=51200 npx mocha --timeout 1000000000"
},
"keywords": [
"ecdsa-p384",
"ecdsa",
"secp384r1",
"p384-circom",
"ecdsa-circom",
"circom",
"zk",
"zk-snarks"
],
"files": [
"circuits",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/crema-labs/ecdsa-p384-circom.git"
},
"contributors": [
"Vikas Rushi <0xvikas@gmail.com>",
"Ayman Mohammed <aymanshaik1015@gmail.com>"
],
"dependencies": {
"bip66": "^2.0.0",
"circomkit": "^0.0.22",
"circomlib": "^2.0.5",
"elliptic": "^6.5.7",
"node-forge": "^1.3.1"
},
"devDependencies": {
"@types/elliptic": "^6.4.18",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}