forked from privacy-scaling-explorations/p0tion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.56 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
107
{
"name": "@p0tion/phase2cli",
"type": "module",
"version": "1.2.5",
"description": "All-in-one interactive command-line for interfacing with zkSNARK Phase 2 Trusted Setup ceremonies",
"repository": "[email protected]:privacy-scaling-explorations/p0tion.git",
"homepage": "https://github.com/privacy-scaling-explorations/p0tion",
"bugs": "https://github.com/privacy-scaling-explorations/p0tion/issues",
"license": "MIT",
"bin": "dist/index.js",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"engines": {
"node": ">=16.14.0"
},
"files": [
"dist/",
"src/",
"types/",
"README.md"
],
"keywords": [
"typescript",
"zero-knowledge",
"zk-snarks",
"phase-2",
"trusted-setup",
"ceremony",
"snarkjs",
"circom"
],
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript",
"start": "ts-node --esm ./src/index.ts",
"auth": "yarn start auth",
"auth:siwe": "yarn start auth-siwe",
"auth:bandada": "yarn start auth-bandada",
"contribute": "yarn start contribute",
"clean": "yarn start clean",
"list": "yarn start list",
"logout": "yarn start logout",
"validate": "yarn start validate",
"ceremony:participants": "yarn start ceremony participants",
"coordinate:setup": "yarn start coordinate setup",
"coordinate:observe": "yarn start coordinate observe",
"coordinate:finalize": "yarn start coordinate finalize",
"docs": "typedoc src/**/*.ts --out ../../docs/phase2cli"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/cli-progress": "^3.11.0",
"@types/figlet": "^1.5.6",
"@types/mime-types": "^2.1.1",
"@types/node-emoji": "^1.8.2",
"@types/node-fetch": "^2.6.3",
"@types/ora": "^3.2.0",
"@types/prompts": "^2.4.4",
"@types/rollup-plugin-auto-external": "^2.0.2",
"@types/winston": "^2.4.4",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-typescript2": "^0.34.1",
"solc": "^0.8.19",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@adobe/node-fetch-retry": "^2.2.0",
"@aws-sdk/client-s3": "^3.329.0",
"@bandada/api-sdk": "^1.0.0-beta.1",
"@octokit/auth-oauth-app": "^5.0.5",
"@octokit/auth-oauth-device": "^4.0.4",
"@octokit/request": "^6.2.3",
"@p0tion/actions": "^1.2.5",
"@semaphore-protocol/identity": "^3.15.1",
"blakejs": "^1.2.1",
"boxen": "^7.1.0",
"chalk": "^5.2.0",
"clear": "^0.1.0",
"cli-progress": "^3.12.0",
"clipboardy": "^3.0.0",
"commander": "^10.0.1",
"conf": "^11.0.1",
"dotenv": "^16.0.3",
"ethers": "^6.9.0",
"figlet": "^1.6.0",
"firebase": "^9.21.0",
"log-symbols": "^5.1.0",
"mime-types": "^2.1.35",
"node-disk-info": "^1.3.0",
"node-emoji": "^1.11.0",
"node-fetch": "^3.3.1",
"open": "^9.1.0",
"ora": "^6.3.0",
"prompts": "^2.4.2",
"rimraf": "^5.0.0",
"rollup": "^3.21.6",
"snarkjs": "0.7.3",
"timer-node": "^5.0.7",
"winston": "^3.8.2"
},
"publishConfig": {
"access": "public"
}
}