-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@solarity/circom-lib",
"version": "0.1.3",
"license": "MIT",
"author": "Distributed Lab",
"readme": "README.md",
"description": "Circom Library for Savvies",
"repository": {
"type": "git",
"url": "https://github.com/dl-solarity/circom-lib"
},
"keywords": [
"circom",
"ethereum",
"zero-knowledge",
"distributedlab",
"solarity"
],
"files": [
"**/*.circom",
"!mock/**/*"
],
"scripts": {
"prepare": "husky",
"compile": "npm run zkit-make && npm run zkit-verifiers && npm run solidity-compile",
"solidity-compile": "npx hardhat compile --force",
"zkit-make": "npx hardhat zkit:make",
"zkit-compile": "npx hardhat zkit:compile",
"zkit-verifiers": "npx hardhat zkit:verifiers",
"test": "npx hardhat test",
"generate-types": "TYPECHAIN_FORCE=true npx hardhat typechain",
"lint-fix": "npm run lint-sol-fix && npm run lint-ts-fix && npm run lint-json-fix",
"lint-json-fix": "prettier --write \"./**/*.json\"",
"lint-ts-fix": "prettier --write \"./**/*.ts\"",
"lint-sol-fix": "prettier --write \"contracts/**/*.sol\"",
"publish-to-npm": "npm run lint-fix && bash ./scripts/publish.sh --public"
},
"dependencies": {
"circomlib": "2.0.5"
},
"devDependencies": {
"@iden3/contracts": "^1.4.7",
"@iden3/js-crypto": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@solarity/hardhat-zkit": "^0.3.0-rc.1",
"@solarity/solidity-lib": "^2.7.3",
"@typechain/ethers-v6": "^0.5.1",
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^18.16.0",
"@types/snarkjs": "^0.7.8",
"circomlibjs": "^0.1.7",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"hardhat": "2.20.1",
"husky": "^9.0.11",
"logplease": "^1.2.15",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.2",
"typescript": "^5.4.3"
}
}