@devtion/devcli 0.0.0-a6dcd68 → 0.0.0-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +97 -98
package/package.json
CHANGED
|
@@ -1,100 +1,99 @@
|
|
|
1
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
|
-
}
|
|
2
|
+
"name": "@devtion/devcli",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.0-dev",
|
|
5
|
+
"description": "All-in-one interactive command-line for interfacing with zkSNARK Phase 2 Trusted Setup ceremonies",
|
|
6
|
+
"repository": "git@github.com:privacy-scaling-explorations/p0tion.git",
|
|
7
|
+
"homepage": "https://github.com/privacy-scaling-explorations/p0tion",
|
|
8
|
+
"bugs": "https://github.com/privacy-scaling-explorations/p0tion/issues",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"bin": "dist/index.js",
|
|
11
|
+
"main": "dist/index.js",
|
|
12
|
+
"types": "dist/types/index.d.ts",
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=16.14.0"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist/",
|
|
18
|
+
"src/",
|
|
19
|
+
"types/",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
22
|
+
"keywords": [
|
|
23
|
+
"typescript",
|
|
24
|
+
"zero-knowledge",
|
|
25
|
+
"zk-snarks",
|
|
26
|
+
"phase-2",
|
|
27
|
+
"trusted-setup",
|
|
28
|
+
"ceremony",
|
|
29
|
+
"snarkjs",
|
|
30
|
+
"circom"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
|
|
34
|
+
"build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript",
|
|
35
|
+
"start": "ts-node --esm ./src/index.ts",
|
|
36
|
+
"auth": "yarn start auth",
|
|
37
|
+
"contribute": "yarn start contribute",
|
|
38
|
+
"clean": "yarn start clean",
|
|
39
|
+
"list": "yarn start list",
|
|
40
|
+
"logout": "yarn start logout",
|
|
41
|
+
"validate": "yarn start validate",
|
|
42
|
+
"coordinate:setup": "yarn start coordinate setup",
|
|
43
|
+
"coordinate:observe": "yarn start coordinate observe",
|
|
44
|
+
"coordinate:finalize": "yarn start coordinate finalize",
|
|
45
|
+
"docs": "typedoc src/**/*.ts --out ../../docs/phase2cli"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/clear": "^0.1.2",
|
|
49
|
+
"@types/cli-progress": "^3.11.0",
|
|
50
|
+
"@types/figlet": "^1.5.6",
|
|
51
|
+
"@types/mime-types": "^2.1.1",
|
|
52
|
+
"@types/node-emoji": "^1.8.2",
|
|
53
|
+
"@types/node-fetch": "^2.6.3",
|
|
54
|
+
"@types/ora": "^3.2.0",
|
|
55
|
+
"@types/prompts": "^2.4.4",
|
|
56
|
+
"@types/rollup-plugin-auto-external": "^2.0.2",
|
|
57
|
+
"@types/winston": "^2.4.4",
|
|
58
|
+
"rollup-plugin-auto-external": "^2.0.0",
|
|
59
|
+
"rollup-plugin-cleanup": "^3.2.1",
|
|
60
|
+
"rollup-plugin-typescript2": "^0.34.1",
|
|
61
|
+
"solc": "^0.8.19",
|
|
62
|
+
"ts-node": "^10.9.1",
|
|
63
|
+
"typescript": "^5.0.4"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@adobe/node-fetch-retry": "^2.2.0",
|
|
67
|
+
"@octokit/auth-oauth-app": "^5.0.5",
|
|
68
|
+
"@octokit/auth-oauth-device": "^4.0.4",
|
|
69
|
+
"@octokit/request": "^6.2.3",
|
|
70
|
+
"@p0tion/actions": "^1.0.5",
|
|
71
|
+
"blakejs": "^1.2.1",
|
|
72
|
+
"boxen": "^7.1.0",
|
|
73
|
+
"chalk": "^5.2.0",
|
|
74
|
+
"clear": "^0.1.0",
|
|
75
|
+
"cli-progress": "^3.12.0",
|
|
76
|
+
"clipboardy": "^3.0.0",
|
|
77
|
+
"commander": "^10.0.1",
|
|
78
|
+
"conf": "^11.0.1",
|
|
79
|
+
"dotenv": "^16.0.3",
|
|
80
|
+
"figlet": "^1.6.0",
|
|
81
|
+
"firebase": "^9.21.0",
|
|
82
|
+
"log-symbols": "^5.1.0",
|
|
83
|
+
"mime-types": "^2.1.35",
|
|
84
|
+
"node-disk-info": "^1.3.0",
|
|
85
|
+
"node-emoji": "^1.11.0",
|
|
86
|
+
"node-fetch": "^3.3.1",
|
|
87
|
+
"open": "^9.1.0",
|
|
88
|
+
"ora": "^6.3.0",
|
|
89
|
+
"prompts": "^2.4.2",
|
|
90
|
+
"rimraf": "^5.0.0",
|
|
91
|
+
"rollup": "^3.21.6",
|
|
92
|
+
"snarkjs": "^0.6.11",
|
|
93
|
+
"timer-node": "^5.0.7",
|
|
94
|
+
"winston": "^3.8.2"
|
|
95
|
+
},
|
|
96
|
+
"publishConfig": {
|
|
97
|
+
"access": "public"
|
|
98
|
+
}
|
|
100
99
|
}
|