forked from 0xPARC/circom-ecdsa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.31 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.31 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
{
"name": "circom-ecdsa",
"version": "0.0.1",
"description": "bigint arithmetic and secp256k1 ecc operations in circom",
"main": "index.js",
"scripts": {
"build:pubkeygen": "cd ./scripts/pubkeygen && ./build_pubkeygen.sh",
"build:groupsig": "cd ./scripts/groupsig && ./build_groupsig.sh",
"build-windows:groupsig": "cd ./scripts/groupsig && ./windows_build_groupsig.sh",
"build:verify": "cd ./scripts/verify && ./build_verify.sh",
"build:eth_addr": "cd ./scripts/eth_addr && ./build_eth_addr.sh",
"test": "NODE_OPTIONS=--max_old_space_size=56000 mocha -r ts-node/register 'test/**/*.ts'",
"groupsig-demo": "npx ts-node scripts/groupsign_cli.ts",
"prototype-demo": "npx ts-node scripts/variable_groupsign_cli.ts"
},
"repository": "git@github.com:0xPARC/circom-ecdsa.git",
"author": "0xPARC <hello@0xparc.org>",
"license": "ISC",
"dependencies": {
"circomlib": "^2.0.2",
"ethers": "^5.5.2",
"snarkjs": "^0.4.10"
},
"devDependencies": {
"@noble/secp256k1": "1.3.4",
"@types/chai": "^4.3.0",
"@types/expect": "^24.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"circom_tester": "0.0.9",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}