-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
106 lines (106 loc) · 2.92 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "rlnjs",
"version": "3.3.0",
"description": "Client library for generating and using RLN ZK proofs.",
"license": "MIT",
"repository": "https://github.com/Rate-Limiting-Nullifier/rlnjs",
"homepage": "https://github.com/Rate-Limiting-Nullifier/rlnjs",
"contributors": [
{
"name": "AtHeartEngineer"
},
{
"name": "Mai-Hsuan (Kevin) Chia"
},
{
"name": "bdim1"
},
{
"name": "Seohee Park"
}
],
"scripts": {
"prepare": "husky install",
"build": "rollup --config rollup.config.mjs",
"build-and-publish": "npm install && npm run build && npm publish",
"test": "jest",
"test:debug": "jest --silent=false",
"test:benchmark": "jest --silent=false ./tests/circuit-wrapper.test.ts",
"test:ci": "jest --silent=false --runInBand",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/ -c .eslintrc.js",
"format": "eslint --ext .ts,.tsx,.js,.jsx src/ -c .eslintrc.js --fix"
},
"keywords": [
"rln",
"rate-limiting-nullifier",
"ethereum",
"circom",
"zk",
"zero-knowledge",
"zk-snarks",
"zero-knowledge-proofs"
],
"publishConfig": {
"access": "public"
},
"main": "./dist/index.node.cjs",
"module": "./dist/index.mjs",
"browser": {
"./dist/index.node.cjs": "./dist/index.mjs"
},
"types": "./dist/types/index.d.ts",
"directories": {
"dist": "./dist",
"src": "./src",
"test": "./tests"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"dependencies": {
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/solidity": "^5.7.0",
"@ethersproject/strings": "^5.7.0",
"@semaphore-protocol/group": "^3.10.1",
"@semaphore-protocol/identity": "^3.10.1",
"@zk-kit/incremental-merkle-tree": "^0.4.3",
"axios": "^1.5.0",
"ethers": "^6.4.0",
"ffjavascript": "0.2.55",
"poseidon-lite": "^0.0.2",
"snarkjs": "^0.7.0"
},
"devDependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"hardhat": "^2.14.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.1",
"rollup": "^3.14.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-visualizer": "^5.9.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
}
}