-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
36 lines (36 loc) · 1.19 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
{
"name": "@unirep-app/circuits",
"version": "1.1.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"description": "ZK proofs used for the unirep attesters",
"author": "Unirep social TW",
"homepage": "https://github.com/social-tw/social-tw-website",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/social-tw/social-tw-website.git"
},
"scripts": {
"build": "tsc && yarn copyCircom",
"buildsnark": "ts-node ./scripts/buildSnarks.ts && tsc && yarn copyCircom",
"rebuildsnark": "find ./zksnarkBuild -type f ! -name '*.ptau' -exec rm -f {} + && yarn buildsnark",
"test": "mocha -r ts-node/register test/*.test.ts --exit",
"copyCircom": "sh scripts/copyCircom.sh"
},
"bugs": {
"url": "https://github.com/social-tw/social-tw-website/issues"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"dependencies": {
"@types/snarkjs": "^0.7.7",
"@unirep/core": "2.1.5-alpha-1",
"poseidon-lite": "^0.2.0"
}
}