Files
p0tion/apps/phase2cli/package.json
Jeeiii eda21d4e5b refactor: switch to monorepo approach by separating the CLI from the actions; renamings and minors
This monorepo approach where the CLI commands have a dedicated package of actions and helpers, the
backend is organized in a more generic fashion will ease the burden of testing and maintainability.

BREAKING CHANGE: The folder structure and build process (now using lerna)

re #175
2022-11-17 14:35:33 +01:00

88 lines
2.3 KiB
JSON

{
"name": "@zkmpc/phase2cli",
"version": "0.0.2",
"description": "All-in-one interactive command-line for interfacing with zkSNARK Phase 2 Trusted Setup ceremonies",
"main": "dist/src/index.js",
"repository": "https://github.com/quadratic-funding/mpc-phase2-suite/cli",
"homepage": "https://github.com/quadratic-funding/mpc-phase2-suite",
"bugs": "https://github.com/quadratic-funding/mpc-phase2-suite/issues",
"author": {
"name": "Giacomo (0xjei)"
},
"license": "MIT",
"private": false,
"type": "module",
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"src/",
"README.md"
],
"keywords": [
"typescript",
"zero-knowledge",
"zk-snarks",
"phase-2",
"trusted-setup",
"ceremony",
"snarkjs",
"circom"
],
"bin": {
"phase2cli": "dist/src/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"auth": "yarn start auth",
"contribute": "yarn start contribute",
"clean": "yarn start clean",
"logout": "yarn start logout",
"coordinate:setup": "yarn start coordinate setup",
"coordinate:observe": "yarn start coordinate observe",
"coordinate:finalize": "yarn start coordinate finalize"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/cli-progress": "^3.11.0",
"@types/conf": "^3.0.0",
"@types/figlet": "^1.5.4",
"@types/mime-types": "^2.1.1",
"@types/node-emoji": "^1.8.1",
"@types/node-fetch": "^2.6.2",
"@types/ora": "^3.2.0",
"@types/prompts": "^2.0.14",
"@types/winston": "^2.4.4",
"typescript": "^4.7.4"
},
"dependencies": {
"@adobe/node-fetch-retry": "^2.2.0",
"@octokit/auth-oauth-app": "^5.0.1",
"@octokit/auth-oauth-device": "^4.0.0",
"@octokit/request": "^6.2.0",
"@zkmpc/actions": "^0.0.0",
"blakejs": "^1.2.1",
"boxen": "^7.0.0",
"chalk": "^5.0.1",
"clear": "^0.1.0",
"cli-progress": "^3.11.2",
"clipboardy": "^3.0.0",
"commander": "^9.4.0",
"conf": "^10.2.0",
"dotenv": "^16.0.1",
"figlet": "^1.5.2",
"firebase": "^9.9.1",
"log-symbols": "^5.1.0",
"mime-types": "^2.1.35",
"node-disk-info": "^1.3.0",
"node-emoji": "^1.11.0",
"node-fetch": "^3.2.10",
"open": "^8.4.0",
"ora": "^6.1.2",
"prompts": "^2.4.2",
"snarkjs": "^0.5.0",
"timer-node": "^5.0.6",
"winston": "^3.8.1"
}
}