Files
p0tion/packages/phase2cli/package.json
2023-01-24 12:48:58 +01:00

101 lines
3.1 KiB
JSON

{
"name": "@zkmpc/phase2cli",
"version": "0.1.0",
"description": "All-in-one interactive command-line for interfacing with zkSNARK Phase 2 Trusted Setup ceremonies",
"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",
"license": "MIT",
"private": false,
"exports": {
"import": "./dist/src/index.node.mjs",
"require": "./dist/src/index.node.js"
},
"types": "dist/types/src/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"
],
"bin": {
"phase2cli": "./dist/src/index.node.mjs"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript",
"start": "node ./dist/src/index.node.mjs",
"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"
},
"peerDependencies": {
"@zkmpc/actions": "^0.0.1"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/cli-progress": "^3.11.0",
"@types/conf": "^3.0.0",
"@types/figlet": "^1.5.5",
"@types/mime-types": "^2.1.1",
"@types/node-emoji": "^1.8.2",
"@types/node-fetch": "^2.6.2",
"@types/ora": "^3.2.0",
"@types/prompts": "^2.4.1",
"@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-typescript2": "^0.34.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@adobe/node-fetch-retry": "^2.2.0",
"@octokit/auth-oauth-app": "^5.0.4",
"@octokit/auth-oauth-device": "^4.0.3",
"@octokit/request": "^6.2.2",
"blakejs": "^1.2.1",
"boxen": "^7.0.0",
"chalk": "^5.1.2",
"clear": "^0.1.0",
"cli-progress": "^3.11.2",
"clipboardy": "^3.0.0",
"commander": "^9.4.1",
"conf": "^10.2.0",
"dotenv": "^16.0.3",
"figlet": "^1.5.2",
"firebase": "^9.14.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.0",
"open": "^8.4.0",
"ora": "^6.1.2",
"prompts": "^2.4.2",
"snarkjs": "^0.5.0",
"timer-node": "^5.0.6",
"winston": "^3.8.2"
},
"publishConfig": {
"access": "public"
}
}