-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "@crema-labs/aes-circom",
"description": "A generic AES forward cipher implementation",
"version": "0.0.2",
"main": "index.js",
"keywords": [
"aes",
"cipher",
"circom",
"circuit",
"zk",
"zk-snarks"
],
"files": [
"circuits",
"index.js"
],
"scripts": {
"start": "npx ts-node ./src/index.ts",
"test": "npx mocha",
"compile:test": "npx circomkit compile cipher_4 && npx circomkit prove cipher_4 default && npx circomkit verify cipher_4 default"
},
"dependencies": {
"circomlib": "^2.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/crema-labs/aes-circom.git"
},
"contributors": [
"Ayman Mohammed <[email protected]>",
"Vikas Rushi <[email protected]>",
"Yashwant Reddy <yashdotreddy@gmailcom>"
],
"license": "MIT",
"devDependencies": {
"circomkit": "^0.0.22",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}